我想一個div內完成每個超鏈接的圖像的東西帶班的sampleclass
:jQuery-獲取所有超鏈接的圖像
<div class="sampleclass">
<a href="#">text hyperlink</a> <!-- don't touch this -->
<a href="#"><img src="image.jpg"></a> <!-- only touch this -->
</div>
以下是我有:
$('.sampleclass a > img').(function() {
$(this).addClass("someotherclass");
});
這沒有按」 t似乎工作。有什麼建議麼?
以何種方式是不是這方面的工作? –
事件丟失.. – John
你想添加類錨或圖像 –