すべての div ボックスでワンクリック機能を使用しようとしています。いくつかの調査を行いましたが、まだ正しく動作させることができません。私はプログラミングに慣れていないので、これについて間違った方法で行っている可能性があります。これが私がやろうとしていることの例です:
<div id="test_1">
<p class="example">display this text 1</p>
</div>
<div id="test_2">
<p class="example">display this text 2</p>
</div>
<div id="test_3">
<p class="example">display this text 3</p>
</div>
$('div[id^="test"]').each(function(){
$(this).click(function(){
test = $(this).parent().find('.example').attr("p")
alert(test)
})
})
これでうまくいくと思いましたが、 または の代わりにtestまたはdiv
the 2
shows3
をalert
クリックすると."display this text 1"
"display this text 2"
"...3"
私が間違っていることは何か分かりますか?