gpt4 book ai didi

jQuery:如何通过 src 查找图像

转载 作者:行者123 更新时间:2023-12-03 21:26:08 24 4
gpt4 key购买 nike

我需要通过名称和源找到一个img。我一直在尝试以下方法,但没有成功。

var s = $("img[src='/images/greendot.gif'][name='BS']");

HTML:

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

对比

<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"));

关于jQuery:如何通过 src 查找图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/835378/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com