gpt4 book ai didi

javascript - JQuery:.remove() 无法正常工作

转载 作者:行者123 更新时间:2023-11-30 13:04:23 34 4
gpt4 key购买 nike

这是我的 html 和代码:

  <div id="rptCategoryProducts">
<ul class="productsUl">
</ul>
</div>

删除脚本:

         $("#btnFilter").click(function () {

$(".productsUl li").each(function () {
this.remove();
});

currentPage = 0;
InfiniteScroll(0, 1000);
});

添加脚本:

 $(".productsUl").append("<li>" + productInnerHtml + "</li>");

但它不会删除,而且当我在 Mozilla Firebug 中查看步骤时,我看到它在 this.remove(); 行之后停止。你有什么建议吗?

最佳答案

或者更简单:

$(".productsUl li").remove();

;-)

关于javascript - JQuery:.remove() 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16233602/

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