javascript中onclick this
Posted skiwnchqhh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript中onclick this相关的知识,希望对你有一定的参考价值。
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
}
再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow
以上是关于javascript中onclick this的主要内容,如果未能解决你的问题,请参考以下文章
href="javascript:xxx(this);"和onclick="javascript:xxx(this);"的区别
在javascript创建一个div,当触发onclick事件时调用一个方法,参数是这个div,代码怎么写