0

私は非常に基本的な問題を抱えています。実際には、ここに見えます。2 つのボタンを分離したい。

jQuery

$( "span" ).click(function() {
  $( "p" ).toggle( "slow" );
});

HTML

<span>↓ Hobby </span>
<p class="contentDiv" >Such interesting text, eh?</p>
    <br> <br>
 <span>↓ Sport </span>
<p class="contentDiv" >Such interesting text, eh?</p>

getElementById で試していましたが、うまくいきません。

私は初心者です、我慢してください。

4

2 に答える 2

2

$('p')すべての p 要素を選択している場合は、次のように指定する必要があります

$( "span" ).click(function() {
  $(this).next().toggle();
});
于 2013-09-17T09:05:25.630 に答える
0

これを試して。

$( "span" ).click(function() {
  $(this).closest('p').toggle();
});
于 2013-09-17T09:06:49.033 に答える