最后一个函数恢复原始值

来源:4-1 编程挑战

千年虫cc

2016-09-13 12:52

removedattribute没反应,无法恢复原始值: function rec(){      var m=confirm("确定取消设置?");      if(m==ture)      {      myhead.removeAttribute("style");      mychar.removeAttribute("style");     } }

写回答 关注

5回答

  • 林深遇见鹿
    2016-09-13 16:21:36

    哈哈,我也经常犯这个错误,只要把ture改为true就ok了。

  • qq_打烊了该走了_03707503
    2016-09-13 15:38:03

    <input type="button" value="取消设置" onclick="rec()>

  • qq_打烊了该走了_03707503
    2016-09-13 15:16:11

     var  myhead=document.getElementById(txt)

    function rec(){     

     var m=confirm("确定取消设置?");     

     if(m==true)      {   

       myhead.removeAttribute("style");     

        } }

    望采纳!!!

  • 木鱼子午
    2016-09-13 15:03:44

    m==true不是m==ture

  • weibo_舒适且不尴尬的沉默__03981861
    2016-09-13 14:48:11

    要先通过document.getElementById()方法来获取你要取消设置的元素

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739818 学习 · 9566 问题

查看课程

相似问题