我有一個非常基本的類手風琴(http://jqueryui.com/accordion/)內容顯示系統。我是新來的,也是固執的,所以我沒有使用提供的。 這裏是代碼:Jquery類似於手風琴的內容切換
$(".listitem").click(function(){
$("#info"+$(this).attr('id')).slideToggle("fast");
});
<h3 class="listitem" id="1">title 1</h3>
<div id="info1">blah blah blah 1</div>
<h3 class="listitem" id="2">title 2</h3>
<div id="info2">blah blah blah 2</div>
所有列表中的項目有數字1-6,或任何的ID和隱藏的內容有「信息」 +相應的數字ID。我的問題是,我怎麼能這樣做,當一個新的項目被點擊時,它會關閉前一個?
我知道這是很久以前發佈的,但非常感謝。 – differenceclouds