问答详情
源自:4-1 编程挑战

帮帮忙咯 新手一枚

function setCon() {    var message=confirm("你确定取消设置么?") ;    if(message==true)    {   var txt1=document.getElementById("txt");        txt1.style.removeAttribute('style'); }关于这样 为什么点击按钮没有效果呀呀呀?

提问者:汇源 2016-01-25 17:22

个回答

  • jellyhui
    2016-01-26 12:11:30

    txt1后面没有style

  • 超超儿
    2016-01-25 19:54:49

    txt1.removeAttribute("style");就可以了,具体不太清楚

  • jackfrost1995
    2016-01-25 18:16:15

    那样是直接搬掉了整个style!

    尝试:

    txt1.style.color=null;
    txt1.style.width=null;
    txt1.style.height=null;
    txt1.style.display=null;