我正在尝试为 a中的标签设置一个click
事件<a>
TD
我有
test.prototype.buildData = function() {
cell = createElement('td', {innerHTML: "<a class='link' onclick='"+this.edit(this)+"'>"+ value + "</a>"});
this.table.appendChild(cell);
//many cells..all need to attached the click event
}
test.prototype.edit=function(this){
this.style.backgroundColor='red'
}
我想修改点击的cell
background color
. 我还需要将click
事件仅注册到<a>
标签。我知道我this.edit(this)
的没有意义。
有没有办法做到这一点?非常感谢!