为什么addColor 调用不了,问答里面最新的那个回答却可以成功
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
window.onload = function addColor(){
/* var x=document.getElementsByTagName("tr");
for(var i=0;i<x.length;i++)
{
x[i].onmouseover=function()
{
this.style.backgroundColor="red";
}
}*/
var rh = document.getElementsByTagName("tr");
for(var i=0;i<rh.length;i++)
{
rh[i].onmouseover=function(){
this.style.backgroundColor="#f2f2f2";
}
rh[i].onmouseout=function(){
this.style.backgroundColor="#fff";
}
}
}
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
// 编写一个函数,供添加按钮调用,动态在表格的最后一行添加子节点;
function add(){
var y=document.getElementById("table").childNodes[1];
var newnode=document.createElement("tr");
newnode.border="1";
y.appendChild(newnode);
var newnode1=document.createElement("td");
var z=document.getElementsByTagName("tr").length-1;
newnode1.innerHTML="xh00"+z;
newnode1.border="1";
newnode.appendChild(newnode1);
var newnode2=document.createElement("td");
newnode2.innerHTML="王小狼";
newnode2.border="1";
newnode.appendChild(newnode2);
var newnode3=document.createElement("td");
newnode3.border="1";
newnode.appendChild(newnode3);
var newnode4=document.createElement("a");
newnode4.href="javascript:;";
newnode4.innerHTML="删除";
newnode3.appendChild(newnode4);
newnode4.setAttribute("onclick","del(this)");
addColor();
}
// 创建删除函数
function del(obj){
obj.parentNode.parentNode.parentNode.removeChild(obj.parentNode.parentNode);
}
</script>
<style type="text/css">
/*tr:hover{background-color:red;};*/
</style>
</head>
<body>
<table border="1" width="50%" id="table">
<tr>
<th>学号</th>
<th>姓名</th>
<th>操作</th>
</tr>
<tr>
<td>xh001</td>
<td>王小明</td>
<td><a href="javascript:;" onclick=del(this) >删除</a></td> <!--在删除按钮上添加点击事件 -->
</tr>
<tr>
<td>xh002</td>
<td>刘小芳</td>
<td><a href="javascript:;" onclick=del(this)>删除</a></td> <!--在删除按钮上添加点击事件 -->
</tr>
</table>
<input type="button" value="添加一行" onclick=add() /> <!--在添加按钮上添加点击事件 -->
</body>
</html>