求高手解决下js侧面弹出菜单问题
这个菜单效果,我想在一个网页上重复使用,我的做法是复制粘贴一次js然后把相应的ID改了,但还是只有一个可以显示,求高手帮忙解决下。<scriptlanguage="jav...
这个菜单效果,我想在一个网页上重复使用,我的做法是复制粘贴一次js然后把相应的ID改了,但还是只有一个可以显示,求高手帮忙解决下。
<script language="javascript">
// JavaScript Document
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
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", "");
}
}
}
}
}
window.onload=startList;
</script>
这里有详解的资料,可作参考
http://zch448.blog.163.com/blog/static/7370691020111186334648/ 展开
<script language="javascript">
// JavaScript Document
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
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", "");
}
}
}
}
}
window.onload=startList;
</script>
这里有详解的资料,可作参考
http://zch448.blog.163.com/blog/static/7370691020111186334648/ 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询