gpt4 book ai didi

javascript - 在javascript中计算html var中的元素

转载 作者:行者123 更新时间:2023-11-30 09:06:06 24 4
gpt4 key购买 nike

我正在执行一个 ajax 调用,通过它我正在获取具有结构的数据 (html)

 <li>
<div class="min-height">
<a href="auser.jsp?id=7"><img src="dir/image_759.jpeg"alt="image" /></a><br />
sumit jha
</div>
</li>

现在在添加 dom 之前我想计算 li 在 html 中的数量

例如

$.ajax( {
type: "POST",
url: "more_people.jsp",
data: ({last_id: last_id }),
cache: false,
success: function(html)
{
$li = html;
console.log ( $li.html().children().length );
}
});

我该怎么做?

谢谢

最佳答案

您需要.filter()help结果:

success: function(html) {
console.log($(html).filter("li").length);
}

关于javascript - 在javascript中计算html var中的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4885667/

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