Jump to content
  • 0

Как свернуть все меню кроме активного?


Anarchist
 Share

Question

Подготовил в песочнице пример: http://jsfiddle.net/PdgMb/

Помогите разобраться, пожалуйста. Как сделать так, чтобы при открытии второго подменю, остальные подменю (открытые) сворачивались?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0



$(document).ready(function(){
var x=3;
$(".dropdown").click(function(){
var y = $(this).prop("value");
if(x==3){
$(this).next("ul").slideDown("fast");
$(this).prop("value","1");
x = $(this).prop("value");
}
else if (x==y) {
$(this).next("ul").slideUp("fast");
$(this).prop("value","0");
x=3;
}
else {
$(".dropdown").next("ul").slideUp("fast");
$(".dropdown").prop("value","0");
$(this).next("ul").slideDown("fast");
$(this).prop("value","1");
x = $(this).prop("value");
}
});
});

Иначе не знаю как. Я в JS ничего не смыслю... Зато работает.

Edited by Arinden
Link to comment
Share on other sites

  • 0

Я сам решил эту проблему ;)

http://jsfiddle.net/PdgMb/3/

Хотя теперь другая проблема - хз как закрыть все меню.

Исправил: http://jsfiddle.net/PdgMb/4/


var x=3;
$(".dropdown").click(function(){
var y = $(this).prop("value");
if(x==3){
$(this).next("ul").slideDown("fast");
$(this).prop("value","1");
x = $(this).prop("value");
$(this).toggleClass("active");
}
else if (x==y) {
$(this).next("ul").slideUp("fast");
$(this).prop("value","0");
$(".dropdown").removeClass("active");
x=3;
}
else {
$(".dropdown").next("ul").slideUp("fast");
$(".dropdown").removeClass("active");
$(".dropdown").prop("value","0");
$(this).next("ul").slideDown("fast");
$(this).prop("value","1");
x = $(this).prop("value");
$(this).toggleClass("active");
}
});

Link to comment
Share on other sites

  • 0

А как сделать так, чтобы при клике на любое свободное место все меню сворачивались? Я пробовал повешать закрытие меню на

$(document).bind('click', function(){

});

Но тогда получается, что меню открывается и тут же сворачивается :(

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