当前位置:Gxlcms > JavaScript > javascript中onclick(this)用法介绍

javascript中onclick(this)用法介绍

时间:2021-07-01 10:21:17 帮助过:2人阅读

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
}

人气教程排行