胖猫CAT
2017-06-02 21:31
function Highlight()
{
var tbody = document.getElementById('table').lastChild;
trs = tbody.getElementsByTagName('tr');
for(var i =1;i<trs.length;i++){
trs[i].onmouseover=onmous(trs[i]);
trs[i].onmouseout =outmous(this);
}
function onmous(trsi)
{
trsi.style.backgroundColor ="#f2f2f2";
}
function outmous(trsi)
{
trsi.style.backgroundColor ="#fff";
}
}
有没有错写完测试一下就知道拉
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题