摘要: 对于js初学着必须理解this和srcElement的应用,这也是面试中经常考到的。 this: 下面先看一个例子: 1 <html> 2 <title>this与srcElement的区别</title> 3 <head> 4 <script type="text/javascipt>" 5 function btnClick(){ 6 alert(this.value); 7 } 8 </script> 9 </head>10 <body>11 <input type= 阅读全文
posted @ 2012-05-23 01:18 孙进 阅读(3172) 评论(0) 推荐(0) 编辑