为什么行不随着鼠标的移动而改变背景颜色
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
window.onload = function(){
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
var t=document.getElementsByTagName("tr");
for(var i=0;i<t.length;i++)
{
change(t[i]);
}
}
function change(obj)
{
obj.onmouseover=function()
{
ob.style.backgroundColor="#000000";
}
obj.onmouseout=function()
{
ob.style.backgroundColor="#fff";
}
}
// 编写一个函数,供添加按钮调用,动态在表格的最后一行添加子节点;
// 创建删除函数
</script>