複数の 'DIV' 要素のクラスがあり、その中に 'p' 要素のリストがあります。下記参照:
<div class="container">
<p>This is content 1</p>
<p>This is content 2</p>
<p>This is content 3</p>
</div>
<div class="container">
<p>This is content 1</p>
<p>This is content 2</p>
<p>This is content 3</p>
</div>
ホバーを介して「p」要素を呼び出すための私のjQueryコードは次のとおりです。
$('.container').children('p').hover(function(){
//get the nth child of p from parent class 'container'
});
親コンテナクラス「コンテナ」から要素「p」のn番目の子番号を取得するにはどうすればよいですか?
ホバーした場合のように
コンテンツ1です
出力を 1 としてトリガーする必要があります。