请教高手关于js兼容ie6的问题!!!
哪位高手能帮忙指点下如何让下面的js兼容ie6浏览器呢?
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;