<img src="xxx" alt="xxx" title="xxx">
<div class="buttons">
<a href="xxx"><img src="xxx" alt="xxx" title="xxx"></a>
</div>
我需要编写一个jQuery选择器,它将仅选择标题属性为.buttons div的图像。我知道要选择带有标题属性的图像,我需要使用以下内容:
$("img[title]")
我知道jQuery中有类似:not()选择器,但我找不到将它们组合在一起以实现精确结果的方法。