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

为什么我事件响应挂不上去,求帮忙看下,赶集不尽!

<form>
  <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
    <input type="button" value="改变颜色" onclick="changeColor()" />  
    <input type="button" value="改变宽高" onclick="changeWidth" />
    <input type="button" value="隐藏内容" onclick="hide()" />
    <input type="button" value="显示内容" onclick="show()" />
    <input type="button" value="取消设置" onclick="reset()" />
  </form>
  <script type="text/javascript">
//定义"改变颜色"的函数
    var txt=document.getElementById("txt");
    function changeColor()
    {
        txt.style.color="red";
        txt.style.backgroundColor="red";
    }

//定义"改变宽高"的函数
     function changeWidth()
    {
        txt.style.width="800px";
        txt.style.height="800px";
    }

//定义"隐藏内容"的函数
     function hide()
    {
        txt.style.display="none";
    }

//定义"显示内容"的函数
     function show()
    {
       txt.style.display="block";
    }

//定义"取消设置"的函数
     function reset()
    {
        var memory=confirm("是否取消设置?");
        if(memory==true)
        {
            txt.removeAttribute("style");
        }
    }
  </script>


正在回答

2 回答

第4行 onclick="changeWidth" 改成 onclick="changeWidth()"
第7行  onclick="reset()"  改成  onclick="_reset()"
第38行 function reset()   改成  function _reset()
第40行 后面分号 改成半角


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

HTML500 提问者

谢谢看得这么仔细!
2016-05-26 回复 有任何疑惑可以回复我~
#2

chendidi

请问为啥第7行,和第38行一定要加_才行呢
2016-06-09 回复 有任何疑惑可以回复我~

变量位置,或者提取变量的问题

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

举报

0/150
提交
取消

为什么我事件响应挂不上去,求帮忙看下,赶集不尽!

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