找不到错误呀,求帮忙

来源:4-1 编程挑战

123Zhou123

2015-07-19 19:45

 <form>

  <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->

    <input type="button" onClick="chang1()" value="改变颜色" >  

    <input type="button" onClick="chang2()" value="改变宽高" >

    <input type="button" onClick="chang3()" value="隐藏内容" >

    <input type="button" onClick="chang4()" value="显示内容" >

    <input type="button" onClick="chang5()" value="取消设置" >

  </form>

  <script type="text/javascript">

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

//定义"改变颜色"的函数

  function chang1(){

      mystr.style.color="red";

      mystr.style.backgroundColor="green";

  }


//定义"改变宽高"的函数

  function chang2(){

      mystr.style.wedth="100px";

      mystr.style.height="400px";

  }


//定义"隐藏内容"的函数

   function chang3(){

       mystr.style.display="none";

   }


//定义"显示内容"的函数

   function chang4(){

       mystr.style.display="block";

   }


//定义"取消设置"的函数

   function chang5(){

       var mymassage=confirm("是否取消设置?");

       if(mymassage==true)

       {

             txt.removeAttribute("style");

   }



  </script>


写回答 关注

2回答

  • 浅水了
    2015-07-19 19:59:56
    已采纳
      function chang5(){
           var mymassage=confirm("是否取消设置?");
           if(mymassage==true)
           {
                 txt.removeAttribute("style");
       }
       txt是什么?   你上面不是获取了吗   mystr.removeAttribute("style")


    123Zho...

    找不到错误瞎试的,mystr.removeAttribute("style")这个我也试过了,也不对。。。。。

    2015-07-19 20:26:19

    共 1 条回复 >

  • 123Zhou123
    2015-07-19 20:22:02

    找不到错误瞎试的,mystr.removeAttribute("style")这个我也试过了,也不对。。。。。

    123Zho... 回复浅水了

    哦,漏掉了一个括号 ,谢谢帮忙O(∩_∩)O~~~~~~~~

    2015-07-19 21:04:21

    共 2 条回复 >

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题