以编程方式使用onmouseover为添加了appendChild的元素

时间:2010-11-23 15:45:04

标签: javascript onmouseover onmouseout

我正在使用此代码使用js:

向表中添加行
var tbody = document.getElementById('tableID').getElementsByTagName('tbody')[0];

var row = document.createElement("TR");
tbody.appendChild(row);

我想在TR上使用onmouseover来改变背景颜色,我该怎么做?

1 个答案:

答案 0 :(得分:0)

row.onmouseover = function() { this.style.backgroundColor = "Green"; };