为了账号安全,请及时绑定邮箱和手机立即绑定

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

      <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 回答

{
    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');
    }
    
    }
}

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

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信