欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

javascript中onclick(this)用法介绍_javascript技巧

程序员文章站 2022-05-16 21:39:10
...
this指触发事件的对象
复制代码 代码如下:



复制代码 代码如下:

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