显示/隐藏无序列表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示/隐藏无序列表相关的知识,希望对你有一定的参考价值。
This script allows you to show and hide a at the click of a button. See Show / Hide html for Markup.
function enableRightNavExpand() { if (!document.getElementById) return false; if (!document.getElementById("rightNav")) return false; var nav = document.getElementById("rightNav"); var navItem = nav.getElementsByTagName("li"); for (var i = 0; i < navItem.length; i++){ navItem[i].onclick=function() { if (this.className == "selected") { this.className = ""; } else if (this.className == ""){ this.className = "selected"; } } } }
以上是关于显示/隐藏无序列表的主要内容,如果未能解决你的问题,请参考以下文章
如何根据每个无序列表中的列表项的数量在 Jquery 中隐藏按钮元素