Javascript 高亮 当前行

来源:互联网 发布:淘宝拍单送礼品的微信 编辑:程序博客网 时间:2024/04/29 05:35
function highlighttr(color){var trs=document.getElementsByTagName('tr');for(var x=0;x<trs.length;x++){var tr=trs[x];var oldColor=tr.style.backgroundColor;tr.onmouseover=function(){this.style.backgroundColor=color;}tr.onmouseout=function(){this.style.backgroundColor=oldColor;}}}
window.onload=function(){highlighttr('#9cf');}