为什么我取消设置点了没反应啊 我抄下面代码复制也没反应。。哥哥帮忙看看我的代码哪里有问题

来源:4-1 编程挑战

慕斯卡3373845

2016-09-15 22:59

<input type="button" value="改变颜色" onclick="changecolor()"/>  

    <input type="button" value="改变宽高" onclick="gaodu()"/>

    <input type="button" value="隐藏内容" onclick="yincang()"/>

    <input type="button" value="显示内容" onclick="xianshi()"/>

    <input type="button" value="取消设置" onclick="quxiao"/>

  </form>

  <script type="text/javascript">

   function changecolor(){

        var mycolor=document.getElementById("txt")

        mycolor.style.backgroundColor="red"

   } 


 function gaodu(){

     var mygaodu=document.getElementById("txt")

      mygaodu.style.width="500px"

      mygaodu.style.height="500px"

 }

  function yincang(){

      var shufu=document.getElementById("txt")

       shufu.style.display="none";

      

      

  }

  function xianshi(){

      var xianshi=document.getElementById("txt")

       xianshi.style.display="block";

      

  }

      function quxiao(){


    var cz = document.getElementById("txt");


    var ox=confirm('确认取消设置吗?');


    if(ox==true){


         {cz.style="none");}


     }


}

  


写回答 关注

2回答

  • 慕无忌1269174
    2016-09-16 00:27:17

    {cz.style="none");} 多了半边括号);

    <input type="button" value="取消设置" onclick="quxiao"/>

    这里的quxiao没有加上()


  • 涵涵sunshine
    2016-09-16 00:00:29

      <input type="button" value="取消设置" onclick="quxiao"/>

    这里的quxiao没有加上()

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题