jQuery:如何通过其src找到一个图像

前端之家收集整理的这篇文章主要介绍了jQuery:如何通过其src找到一个图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要通过名称和src找到一个img。我一直试图以下没有效果
var s = $("img[src='/images/greendot.gif'][name='BS']");

html:

<img alt="This item is active." name="BS" src="/images/greendot.gif"/>

vs

<img alt="This item is not active." name="BS" src="/images/spacer.gif"/>

解决方法

没有看到html我会说检查你的路径。
$("img[src$='greendot.gif'][name='BS']")

给出以下HTML:

<img src="http://assets0.twitter.com/images/twitter_logo_header.png" name="logo" />

这个jquery工作:

var x = $("img[src$='twitter_logo_header.png'][name='logo']");
alert(x.attr("src"));
原文链接:https://www.f2er.com/jquery/185274.html

猜你在找的jQuery相关文章