且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Javascript:动态设置onclick并传入元素本身

更新时间:2023-12-05 12:46:16

onclick处理程序在元素的上下文中执行。

The onclick handler is executed in the context of the element.

myDiv.onclick = function () { alert(this.innerHTML); };