Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleJavascript
layui.use(["layer", "element", "jquery"], function () {
  $(".left-nav #nav").off("click");
  $(".left-nav #nav").on("click", "li", function (event) {
    $(".left-nav").find("a").removeClass("active");
    $(this).children("a").addClass("active");
    if ($(this).children(".sub-menu").length) {
      if ($(this).hasClass("open")) {
        $(this).removeClass("open");
        $(this).find(".nav_right").html("");
        $(this).children(".sub-menu").stop(true, true).slideUp();
      } else {
        $(this).addClass("open");
        $(this).children("a").find(".nav_right").html("");
        $(this).children(".sub-menu").stop(true, true).slideDown();
      }
    }
  });
});

...

Download the Sample App