显示/隐藏无序列表

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.
  1. function enableRightNavExpand() {
  2. if (!document.getElementById) return false;
  3. if (!document.getElementById("rightNav")) return false;
  4. var nav = document.getElementById("rightNav");
  5. var navItem = nav.getElementsByTagName("li");
  6. for (var i = 0; i < navItem.length; i++){
  7. navItem[i].onclick=function() {
  8. if (this.className == "selected") {
  9. this.className = "";
  10. }
  11. else if (this.className == ""){
  12. this.className = "selected";
  13. }
  14. }
  15. }
  16. }

以上是关于显示/隐藏无序列表的主要内容,如果未能解决你的问题,请参考以下文章

如何根据每个无序列表中的列表项的数量在 Jquery 中隐藏按钮元素

在片段替换上显示/隐藏 Android 软键盘

如何在滚动列表视图上显示/隐藏底部导航视图?

Sphinx、reStructuredText 显示/隐藏代码片段

在android中显示隐藏片段

Markdown基础语法