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

为什么运行不了呢?

  <script type="text/javascript">

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

    function changeColor(){

        mychar.style.color="red";

        mychar.style.backgroundColor="blue";

    }

    function changeSize(){

        mychar.style.width="200px";

        mychar.style.height="300px";

    }

    function hidetext(){

        mychar.style.display="none";

    }

    function showtext(){

        mychar.style.display="block";

    }

    function resttext(){

        var message = confirm("你确定要重置所有设置么?");

        if(message==true){

            mychar.removeAttribute("style");

        }

    }

</script>




提问者:qq_见怪不怪_0 2016-04-21 19:45

个回答

  • hello赵
    2016-04-22 15:56:25

    var message = confirm("你确定要重置所有设置么?");分号错误应为英文状态的 ' ; '

  • qq电子时代
    2016-04-22 15:46:16

    你在input里面是否调用了各个函数,我瞅了瞅你的代码没什么错误 ,你自己找找有没有不是英文符号的,是中文的

  • 讯尔小白
    2016-04-22 13:05:15

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

        <input type="button" value="改变颜色" onclike="test1()" />  

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

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

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

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

      </form>

      <script type="text/javascript">

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

    var a=getElementById("txt");

    function test1()

    {a.style.color="red";

    a.style.background="blue";

        

    }


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

    function test2()

    {a.style.width="700px";

    a.style.height="300px";

        

    }


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

    function test3(){

        a.style.display="none";

        

    }


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

    function test4(){

    a.style.display="block";

    }

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


    function test5(){

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

        if(reset=true){

            mychar.removeAttribute("style");

            


      </script>

    我这个也运行不了 不知道什么问题

  • Remoa旳多愁岁玥3191842
    2016-04-21 20:40:48

    <form>
        <input type="button" value="改变颜色" onclick="changeColor()">  
        <input type="button" value="改变宽高" onclick="changeSize()">
        <input type="button" value="隐藏内容" onclick="hidetext()">
        <input type="button" value="显示内容" onclick="showtext()">
        <input type="button" value="取消设置" onclick="resttext()">
      </form>

  • 慕粉3169030
    2016-04-21 20:30:02

    button点击事件添加了没有,看不到回答个毛