码迷,mamicode.com
首页 > 编程语言 > 详细

javascript this关键字

时间:2014-05-22 16:49:24      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:c   java   ext   http   a   javascript   

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title></title>
<script type ="text/javascript" >
//this是表示当前监听事件这个对象,event.srcElement是引发事件的对象
function btnClick() {//相应事件函数中不能用this来获取事件对象
alert(this.value);
}
function btnClick2(btn) {//将this作为参数传过来

alert(btn.value);
}
</script>
</head>
<body>
<input type ="button" value ="click1" onclick ="alert(event.srcElement.value)" />

<input type ="button" value ="click2" onclick ="alert(this.value)" />

<input type ="button" value ="click3" onclick ="btnClick()" />
<input type ="button" value ="click4" onclick ="btnClick2(this)" />

</body>
</html>

javascript this关键字,布布扣,bubuko.com

javascript this关键字

标签:c   java   ext   http   a   javascript   

原文地址:http://www.cnblogs.com/sumg/p/3742760.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!