为了账号安全,请及时绑定邮箱和手机立即绑定

新增同学是,怎么让新增的<input>标签也能有高光效果

function Highlight(){

var tbody = document.getElementById('table').lastChild;

trs = tbody.getElementsByTagName('tr');

tds=document.getElementsByTagName('td');

for(var i =1;i<trs.length;i++){

trs[i].onmouseover = function(){

this.style.backgroundColor ="#f2f2f2";

// for(var j=0;j<this.childNodes.length;j++){

//     this.childNodes[j].childNodes.style.backgroundColor="#f2f2f2";

// }

trs[i].onmouseout = function(){

this.style.backgroundColor ="#fff";

}  

}


正在回答

1 回答

在新增同学的函数里调用这个函数,即添加一句Highlight();

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

新增同学是,怎么让新增的<input>标签也能有高光效果

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信