我想知道当我点击当前选中的function
时如何执行div
:
Whatever.prototype.addClick = function() {
this.current = document.getElementById('div'+i);
this.current.onclick = function() {alert('hello'); };
};
为了澄清,i
每次创建div
时递增1,为每个div
提供唯一的id
。
如果有任何不清楚或需要更多代码,请告诉我。
非常感谢!