IDまたはクラスなしで画像にテキスト行を追加しようとしています。次のような一連の画像があります
<img src="../img/star.png" /><span>no text here until left img is clicked</span>
<img src="../img/someotherpicture.png" /><span>no text here until left img is clicked</span>
<img src="../img/anotherpicture.png" /><span>no text here until left img is clicked</span>
そしてjqueryの場合、私は持っています
$(document).ready(function(){
$("img").click(function(){
$("img").next.$("span").val("info inserted after clicking on the img next to spa");
})
});
ここで next をどのように使用すればよいか、少し混乱しています。私は常に img の後にスパンがあります。