我想使用 jquery 将宽度属性添加到包含 png 和 jpg 的 img 标签中的 gif 文件。这是我要从中选择 gif 的代码。
<article id="post195" class="abcd123">
<div class="content">
<div id='gallery' class='columns'>
<dl class='gallery-item'>
<dt class='gallery-icon'>
<a href='/?attachment_id=195' title='gif(1)'><img src="http://qwerty123.com/images/testfile.gif" class="attachment" /></a>
</dt>
</dl>
</div>
</div>
</article>
通过使用这个:
$("article").find('img[src$='.gif']').attr('width',500);
但它不起作用。谁能告诉我问题出在哪里?