将onclick事件添加到原型中的多个div

时间:2016-11-08 21:48:35

标签: javascript function onclick prototype

我想知道当我点击当前选中的function时如何执行div

Whatever.prototype.addClick = function() {
  this.current = document.getElementById('div'+i);
  this.current.onclick = function() {alert('hello'); };
  };

为了澄清,i每次创建div时递增1,为每个div提供唯一的id

如果有任何不清楚或需要更多代码,请告诉我。

非常感谢!

0 个答案:

没有答案