gpt4 book ai didi

jquery - 使用 Jquery 遍历自定义 html 字符串

转载 作者:行者123 更新时间:2023-12-01 00:01:54 25 4
gpt4 key购买 nike

我无法使用 Jquery 遍历自定义 html 字符串,如本例所示:

html = '<a href="http://www.site.com"><img width="800" src="http://www.site.com/pic.jpg" alt="" /></a><br /><br />Description<br />';
found = $(html).find("a").length;

“found”返回 0,而我期望得到 1

我怀疑我在这里做了一些非常愚蠢的事情,但几个小时后我仍然不明白出了什么问题。

最佳答案

您需要将 HTML 代码放入“根元素”(例如 DIV)中:

$("<div>"+html+"</div>").find("a").length

关于jquery - 使用 Jquery 遍历自定义 html 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2217898/

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