为什么我输入的代码运行不了

来源:4-1 编程挑战

好奇2宝宝

2015-11-04 10:43

      <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="offset()" >

  </form>

  <script type="text/javascript">

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

{

    function changeColor(){

       txt.style.color="red"; 

       txt.style.backgroundColor="#ccc";

    }

    function changeSize(){

        txt.style.width="500px";

        txt.style.height="700px";

    }

    function hidetext(){

        txt.style.display="none";

    }

    function showtext(){

        txt.style.display="block";

    }

    function offset(){

    var mychar=confirm("确定要重置所有设置吗?");

    if(mychar==true){

        txt.removeAttribute('style');

    }

    

    }

}


写回答 关注

1回答

  • Y_du
    2015-11-04 10:49:45
    已采纳
    {
        function changeColor(){
           txt.style.color="red"; 
           txt.style.backgroundColor="#ccc";
        }
        function changeSize(){
            txt.style.width="500px";
            txt.style.height="700px";
        }
        function hidetext(){
            txt.style.display="none";
        }
        function showtext(){
            txt.style.display="block";
        }
        function offset(){
        var mychar=confirm("确定要重置所有设置吗?");
        if(mychar==true){
            txt.removeAttribute('style');
        }
        
        }
    }

    这些函数外面包含的{}是怎么回事???

JavaScript入门篇

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

739816 学习 · 9566 问题

查看课程

相似问题