首页 > 网络编程 > JavaScript > javascript技巧 > onclick this javascript中onclick(this)用法介绍 2013-04-19 17:20:17 作者: this指触发事件的对象,接下来为大家分享下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 } 您可能感兴趣的文章:js中的this关键字详解javascript this用法小结JS中的this变量的使用介绍解决vue.js this.$router.push无效的问题vue项目中在外部js文件中直接调用vue实例的方法比如说thisjavascript中this的四种用法js报错 Object doesn''t support this property or method的原因分析关于js里的this关键字的理解JavaScript 中的 this 绑定规则详解