js中this的用法

1、this指触发事件的对象

<input type="text" value="eye for eye" id="myeye">
<input id="myinput" type="text" value="javascript中onclick中的this" onclick="javascript:test(this);"/>

2、this在js中的使用

function test(obj){ 
alert(obj); //[object HTMLInputElement] 
alert(obj.id); //myinput 
alert(obj.value); //javascript中onclick中的this 
}

3、获取dom元素的上一个对象

alert($(obj).prev('input').val());//eye for eye


你可能感兴趣的:(js中this的用法)