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

取消设置的写法

//定义"取消设置"的函数 function qux(){    var qu=confirm('确定取消吗')    if(qu=true){        var qu=document.getElementById('txt')        qu.style.cssText = "";    }

提问者:林柚子 2016-03-15 15:07

个回答

  • 左边_右边
    2016-03-15 15:24:29

     var b=confirm("取消设置?");
     if(b==true){
        a.removeAttribute("style")
     }

    或者直接归位

     if(b==true){

     a.style.color="#000";

    a.style.backgroundColor="#fff";

    a.style.width="600px";

     a.style.height="400px";

     a.style.display="block"

     }