?大神可不可以解釋一下每句是什么意思?有點暈~~window.onload = function(){? ? ? ? ? ? // 鼠標移動改變背景,可以通過給每行綁定鼠標移上事件和鼠標移除事件來改變所在行背景色。? ? ? ? ? ? Hightlight();? ? ? ? }?function Hightlight(){? ? ? ? ? ? var t = document.getElementById("table").lastChild;? ? ? ? ? ? var t1 = t.getElementsByTagName("tr");? ? ? ? ? ? for(var i = 1; i < t1.length; ++i ){? ? ? ? ? ? ? ? t1[i].onmouseover = function(){? ? ? ? ? ? ? ? ? ? this.style.backgroundColor = "#f2f2f2";? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? t1[i].onmouseout = function(){? ? ? ? ? ? ? ? ? ? this.style.backgroundColor = "#fff";? ? ? ? ? ? ? ? }? ? ? ? ? ? }? ? ? ? }
求大神解答。
皓韻兒
2016-08-27 21:50:02