gpt4 book ai didi

jQuery 查找 img 标签并从中获取 SRC

转载 作者:行者123 更新时间:2023-12-01 07:19:55 28 4
gpt4 key购买 nike

我有这个js代码:

var imgJPG = jQuery('img[src$=".jpg"]', '<div>' + 
fullCode + '</div>').attr('href');

但是,它似乎没有获取图像的src? fullCode 是 HTML 源代码。

HTML:

<strong><span style="font-size: small;">
<img class="alignleft" title="ASHE" src="http://www.website.org/san-logo.jpg"
alt="" width="198" height="192" />Design (D) is an at the Annual Conference,
held July 15-18, 2012 in San, Florida.</span></strong>

我错过了什么吗?

最佳答案

jQuery 文档并不表明它支持您正在使用的情况。 jQuery() 的第二个参数是一个上下文参数,它(根据 jQuery documentation )可以是 DOM 元素、文档或 jQuery 对象。 jQuery 并没有说它支持 HTML 字符串。

您首先需要将该字符串加载到 jQuery 对象中,以便将其转换为实际的 DOM 元素,如下所示:

var imgJPG = jQuery('img[src$=".jpg"]', jQuery('<div>' + 
fullCode + '</div>')).attr('src');

此外,如果您需要 .src 属性,那么您应该检索该属性,而不是 .href

关于jQuery 查找 img 标签并从中获取 SRC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14941352/

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