?大神可不可以解釋一下每句是什么意思?有點(diǎn)暈~~window.onload = function(){? ? ? ? ? ? // 鼠標(biāo)移動(dòng)改變背景,可以通過(guò)給每行綁定鼠標(biāo)移上事件和鼠標(biāo)移除事件來(lái)改變所在行背景色。? ? ? ? ? ? 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