相同的ID我有以下腳本:使用滑動不同的按鈕,不同的DIV但用javascript
$(document).ready(function() {
$('.expandButton').click(function() {
$('.expandableSection').toggle("slide");
});
});
我想將它應用到多個部分。問題是每次點擊.expandButton按鈕時,所有部分都會滑動,而不是使該特定部分滑動。這是有道理的,但我需要的是隻有該部分滑動。
我的部分是這樣的:
<h1 class="expandButton"></h1>
<div class="expandableSection">
</div>
<h1 class="expandButton"></h1>
<div class="expandableSection">
</div>
<h1 class="expandButton"></h1>
<div class="expandableSection">
</div>
不適用於我。只要我添加$(this).closest或.parent,什麼都不會發生 – samyb8 2014-12-19 14:31:23
@ samyb8查看更新 – 2014-12-20 02:04:30