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

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

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

45行,写了“气死”是错别字,本想写其实。

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

对于你的问题,我做了完整的测试,像你现在写,40行 到 44行这样的判断应该在每个函数里面都相应加上。这个,你会的我就不给你写了。

关于其他地方的错误细节,我给你修正并写了注释:

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
<title>javascript</title>
<style type="text/css">
body{font-size:12px;}
#txt{
    height:400px;
    width:600px;
	border:#333 solid 1px;
	padding:5px;}
p{
	line-height:18px;
	text-indent:2em;}
</style>
</head>
<body>
  <h2 id="con">JavaScript课程</H2>
  <div id="txt"> 
     <h5>JavaScript为网页添加动态效果并实现与用户交互的功能。</h5>
        <p>1. JavaScript入门篇,让不懂JS的你,快速了解JS。</p>
        <p>2. JavaScript进阶篇,让你掌握JS的基础语法、函数、数组、事件、内置对象、BOM浏览器、DOM操作。</p>
        <p>3. 学完以上两门基础课后,在深入学习JavaScript的变量作用域、事件、对象、运动、cookie、正则表达式、ajax等课程。</p>
  </div>
<form>
  <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
    <input type="button" value="改变颜色" onclick="changeColor()" />  
    <input type="button" value="改变宽高" onclick="changeWidth()" /><!-- changeWidth 函数,少了小括号对“()”-->
    <input type="button" value="隐藏内容" onclick="hide()" />
    <input type="button" value="显示内容" onclick="show()" />
    <input type="button" value="取消设置" onclick="reset1()" /> <!-- reset 是Windows 保留关键字JavaScript 可以在 HTML 外部使用。它可在许多其他应用程序中作为编程语言使用。
在 HTML 中,您必须(为了可移植性,您也应该这么做)避免使用 HTML 和 Windows 对象和属性的名称作为 Javascript 的变量及函数名:更多看附近图1 -->
  </form>
  <script type="text/javascript">
//定义"改变颜色"的函数
    var txt=document.getElementById("txt");
    function changeColor()
    {
        txt.style.color="#FFf";//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 reset1()
    {
        var memory=confirm("是否取消设置?");//中文的分号,语法错误;  
        if(memory==true)
        {
            txt.removeAttribute("style");
        }
    }

  </script>
</body>
</html>

对于定义"取消设置"的函数中使用了系统保留字命名导致无法执行的情况,我给你付上保留字,更多你自己去了解javaScript的关键字和保留字。

或者说,在使用方法或变了时确定语法没有错误,你可以先改个名看看,如果换个名字就正常,那就是你使用了关键字或者是保留字命令了,这获取比去记关键字要实在的多。

http://img1.sycdn.imooc.com//5745e2610001e13007450643.jpg

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

举报

0/150
提交
取消

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

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