私はこのマークアップを持っています:
<div>
<div>
<button class="button"></button>
</div>
<div class="panel">
</div>
</div>
panel
次に、要素にぴったりの次を見つけbutton
て、それに対して何らかのアクションを実行する必要があります。だから私はこれをしますが、何かが正しくありません。誰か助けてもらえますか?
var open_bt = $('.button');
open_bt.on('click',function(){
$(this).parent().parent().next().child('.panel').slideDown(100);
});
助けてくれてありがとう。