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

取消设置的方法

要先设置函数最后一个不太好设置要用一个新的方法,然后把函数添加到

标签中的onclick中引用函数。 //定义"取消设置"的函数 function quxiao(){       var a=document.getElementById("txt");   var b=confirm("确定取消全部设置吗?");          if (b==true){           a.removeAttribute("style");//删除属性函数      //object.removeAttribute(属性名); } else{}//设置空白,就相当于不设置 }

提问者:_疾风 2016-07-15 01:40

个回答

  • 慕用7083227
    2016-07-15 10:48:49

    function quxiao()

    {

          var b;

           var a=document.getElementById("txt");   var b=confirm("确定取消全部设置吗?");   

            if (b=true){         

                             document.write("打开");

                            b=prompt("http://www.imooc.com/qadetail/152354?lastmedia=1")

                            window.open('b',_blank);

                             a.removeAttribute("style");     

                             object.removeAttribute(属性名); 

                    } 

                else{

                      document.write("关闭");              

    }

     }

  • 慕仔6939754
    2016-07-15 10:45:38

    <script>

    function qxsz(){
        var qxsz=confirm("确定取消设置吗?");
        if(qxsz==true){
            var wbys=document.getElementById("txt");
            wbys.style.cssText="none";
        }
    }

    </script>