zoukankan      html  css  js  c++  java
  • 树状jquery导航条

        $(function () {
            $(".leftsecoundtitle").css({ "display": "none" });
            $("#id1").toggle(
          function () {
              $("#id1 + .leftsecoundtitle").slideDown("normal");
              $(this).css("background", "#E1E1E1");
              //$(".zsfl-item .zsfl-img").css("background", "#E1E1E1");
          },
          function () {
              $("#id1 + .leftsecoundtitle").slideUp("normal");
              $(this).css("background", "whiteSmoke");
          }

        );
        });

    最终版
            $(function () {
                $(".leftsecoundtitle").css({ "display": "none" });
            });

            function MySlide(id) {
                if ($("#" + id + " + .leftsecoundtitle").css("display") == "none") {
                    $("#" + id + " + .leftsecoundtitle").slideDown("normal");
                    $("#"+id).css("background", "#E1E1E1");
                }
                else if ($("#" + id + " + .leftsecoundtitle").css("display") == "block") {
                    $("#" + id + " + .leftsecoundtitle").slideUp("normal");
                    $("#" + id).css("background", "whiteSmoke");
                }
            }

  • 相关阅读:
    Nginx文件下载服务器部署
    Git分支命名规范
    ROS通信介绍
    linux环境设置默认路由的优先级
    Python日志方案
    Python threading Local()函数用法:返回线程局部变量
    Python中websocket的使用示例
    MQTT的Python使用示例
    利用systemback打包个人ISO系统镜像
    Spring Security学习笔记三
  • 原文地址:https://www.cnblogs.com/handsomer/p/3678272.html
Copyright © 2011-2022 走看看