日期:2014-05-16 浏览次数:20578 次
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("navmall");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+="over";
}
node.onmouseout=function() {
this.className=this.className.replace("over", "");
}
node.onmouseover=function() {
this.className+="over";
this.getElementsByTagName("a")[0].style.backgroundColor="#736767";
this.getElementsByTagName("a")[0].style.color="#FFF";
}
node.onmouseout=function() {
this.className=this.className.replace("over", "");
this.getElementsByTagName("a")[0].style.backgroundColor="";
this.getElementsByTagName("a")[0].style.color="";
}}}}}
window.onload=startList;