使用 Jquery 遍历自定义 html 字符串
我无法使用 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
我怀疑我在这里做了一些非常愚蠢的事情,但几个小时后我仍然不知道看看出了什么问题。
I am not able to traverse a custom html string with Jquery, like in this example:
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" returns 0, while I would expect to get 1
I suspect I'm doing something really stupid here, but after hours I still don't see what's wrong.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 HTML 代码放入“根元素”(如 DIV)中:
You need to put your HTML code into a “root element” like a DIV: