File;"; alert(jQuery("a",ht-6ren">
gpt4 book ai didi

jquery - 使用 jQuery 从 html 中提取 href

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

我正在尝试从 anchor 获取 href 的值。代码如下所示


var html = "<a href='<a href="http://path/to/file.pdf'>File</a&gt" rel="noreferrer noopener nofollow">http://path/to/file.pdf'>File</a&gt</a>;";<br/>
alert(jQuery("a",html).attr("href"));

我得到的唯一输出是“未定义”。我想要“http://path/to/file.pdf ”。

非常感谢任何帮助。

最佳答案

尝试:

jQuery(html).attr('href');

或者如果 <a>标签在 html 中比您的示例更深:

jQuery(html).find('a').attr('href');

jQuery()函数会将 HTML 字符串转换为 DOM 对象,并返回一个包含它们的 jQuery 对象。

关于jquery - 使用 jQuery 从 html 中提取 href,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3073495/

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