gpt4 book ai didi

javascript - 在 jQuery 中按绝对路径查找图像

转载 作者:行者123 更新时间:2023-11-30 18:35:26 25 4
gpt4 key购买 nike

我试过:

$("img[src='"+imgSrc+"']")

但是没有用。 imgSrc 是绝对路径,但在 HTML 文件中的路径是相对的。知道我无法修改 imgSrc,我如何通过绝对路径找到图像?

最佳答案

我唯一能想到的就是找到 img 元素并查看它们的 src property(而不是属性;它们是对于具有相对路径的图像不同)来挑选你想要的那个,例如:

$("img[src]").each(function() {
// Here, `this.src` will be the absolute path
if (this.src === imageSrc) {
// Do something, and optionally `return false` to break the
// loop if you're done
}
});

Live example

关于javascript - 在 jQuery 中按绝对路径查找图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8342091/

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