js页面导行子菜单的读取

Posted on 2012-09-17 15:59  剑竹  阅读(186)  评论(0编辑  收藏  举报

<script type="text/javascript">
         /***控制菜单显示***/
         startList = function () {
             if (document.all && document.getElementById) {
                 navRoot = document.getElementById("nav");//nav 是ul 的id
                 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>

Copyright © 2024 剑竹
Powered by .NET 8.0 on Kubernetes