0
我作出的div這裏的手風琴是代碼:手風琴div的
$('.answer').hide();
$('.question').click (function(){
$('.answer').slideUp();
$('#question'+$(this).attr('target')).slideDown('slow');
})
它工作正常,但我想它,所以當我在它關閉同樣的問題再次點擊。
這裏是我使用的HTML:提前
<h1 class="question" target="1">Some Question</h1>
<p id="question1" class="answer">Some Answer</p>
<h1 class="question" target="2">Another question</h1>
<p id="question2" class="answer">Another answer</p>
感謝
請看看這裏的代碼:http://jsfiddle.net/FMLhc/
你也應該包含HTML結構,所以我們可以看到你是如何設置ID等的。 '$('#question'+ $(this)...''和'$('#question'+ $(this)...' – Tim 2012-07-17 02:50:55