我一次只想展開/摺疊一個容器。當我點擊第一個容器時,第二個容器應該摺疊,當第二個容器展開時,第一個容器應該自動摺疊。以下是小提琴。請指導...謝謝展開/收起問題
http://jsfiddle.net/awaises/eK8X5/1138/
jQuery
$(".header").click(function() {
$header = $(this);
$content = $header.next();
$content.slideToggle(500, function() {
$header.text(function() {
return $content.is(":visible") ? "Collapse" : "Expand";
});
});
});
爲什麼不使用手風琴的文字? http://jqueryui.com/accordion/ – phron