Home  >  Article  >  Web Front-end  >  Introduction to the usage of onclick(this) in javascript_javascript skills

Introduction to the usage of onclick(this) in javascript_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:36:131277browse

this refers to the object that triggered the event

Copy code The code is as follows:



Copy code The code is as follows:

function test(obj){
alert(obj); //[object HTMLInputElement]
alert( obj.id); //myinput
alert(obj.value); //this in onclick in javascript
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn