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

时间:2010-02-07 19:08:45

标签: jquery traversal

我无法使用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;

“找到”返回0,而我希望得到1

我怀疑我在这里做了一些非常愚蠢的事情,但是几个小时后我仍然没有看到什么是错的。

1 个答案:

答案 0 :(得分:8)

您需要将HTML代码放入“根元素”,如DIV:

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