Posted in Javascript onApril 19, 2013
this指触发事件的对象
<input id="myinput" type="text" value="javascript中onclick中的this" onclick="javascript:test(this);"/>
function test(obj){ alert(obj); //[object HTMLInputElement] alert(obj.id); //myinput alert(obj.value); //javascript中onclick中的this }
javascript中onclick(this)用法介绍
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@