内部のタグに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)
は意味がないことを知っています。
とにかくこれを行うことはありますか?どうもありがとう!