我正在尝试使用类sampleclass
的div中的每个超链接图像执行某些操作:
<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");
});
这似乎不起作用。有什么建议吗?
答案 0 :(得分:4)
这里缺少一些东西。
$('.sampleclass a > img').(function() {
$(this).addClass("someotherclass");
});
此:
$('.sampleclass a > img').each(function() {
$(this).addClass("someotherclass");
});
请注意,如果您只是做这样的简单事情,您也可以省略对每个.each()
的调用。
$('.sampleclass a > img').addClass("someotherclass");
答案 1 :(得分:0)
$('.sampleclass a > img').each(function() {
$(this).addClass("someotherclass");
});
答案 2 :(得分:0)