Jump to content
  • 0

Нужна помощь с многоуровневм раскрывающимся меню


karlitos32
 Share

Question

Подскажите, чего не хватает в коде для того чтобы при щелчке по пункту меню вместе с открытием этого пункта закрывался другой уже открытый пунтк. Либо поделитесь ссылкой где про это можно прочесть.

Код следующий:

$(document).ready(function() {
$('ul#my-menu ul').each(function(index) {
$(this).prev().addClass('collapsible').click(function() {
if ($(this).next().css('display') == 'none') {
$(this).next().slideDown(200, function () {
$(this).prev().removeClass('collapsed').addClass('expanded');
});
}else {
$(this).next().slideUp(200, function () {
$(this).prev().removeClass('expanded').addClass('collapsed');
$(this).find('ul').each(function() {
$(this).hide().prev().removeClass('expanded').addClass('collapsed');
});
});
}
return false;
});
});
});

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Подскажите, чего не хватает в коде для того чтобы при щелчке по пункту меню вместе с открытием этого пункта закрывался другой уже открытый пунтк. Либо поделитесь ссылкой где про это можно прочесть.

Код следующий:

Не хватает кода убирания класса с активного элемента

Link to comment
Share on other sites

  • 0

Я бы немного иначе сделал.

$(document).ready(function() {

заменил бы на

$(function(){

вместо

$(this).next().css('display') == 'none'

использовал бы

$(this).next().is(':hidden')

И вообще использовал бы slideToggle.

Непонятно зачем вот так сделано

$(this).find('ul').each(function() {
$(this).hide().prev().removeClass('expanded').addClass('collapsed');
});

Когда можно не использовать each

$(this).find('ul').hide().prev().removeClass('expanded').addClass('collapsed');

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy