Posted on 2007-09-17 23:35
Jack L 阅读(377)
评论(0) 编辑 收藏 所属分类:
JavaScript
JavaScript是区分大小写的语言,而HTML则不区分。
在HTML可以用大写或小写甚至是大小写夹杂表达的地方,在JavaScript中却要多加留意。
比如onclick事件,在JavaScript中一定要全部用小写
看代码:
1 <html>
2 <head>
3 <title>JSTest</title>
4 </head>
5 <body>
6 <input type="button" id="btn1" value="btn1" ONClick="alert('hello, this is btn1');"></input>
7 <input type="button" id="btn2" value="btn2"></input>
8 <script type="text/javascript" charset="utf-8">
9 var ele=document.getElementById("btn2");
10 ele.onclick=function(){alert('hello, this is btn2');}
11 </script>
12 </body>
13 </html>
很明显,第6行,在HTML中引用onclick与第10行在JavaScript中引用onclick事件是不同的。
你可以把第6行"onclick"中的任何一个或若干字母写成大写或小写都没有关系,但是第10行中的onclick必须全部是小写。