gpt4 book ai didi

jquery - 这段代码有问题吗?

转载 作者:行者123 更新时间:2023-12-01 01:19:26 24 4
gpt4 key购买 nike

由于某种原因,未添加“继续”类(最后一行)。

function getBlogs(element, url, limit, feed){
jQuery(element).load(url+ ' .xg_blog_list .xg_module_body:lt('+ limit+ ')', function(){
jQuery(this).prepend("<a class='home-rss' href='"+ feed+ "'></a>");
jQuery(this).append("<a class='view-all-blogs' href='"+ url+"'>View More &raquo;</a>");
jQuery(".xg_module_body .postbody").last("a").each(function(index) {
addClass("continue");
});
});
}

相关html:

<div class="postbody">
<p><a href="link"><img src="image"></a></p>
<p>title</p>
<a href="link">Continue</a>
</div>

最佳答案

您可以调用:

jQuery(".xg_module_body .postbody").last("a").each(function() {
$(this).addClass("continue");
});

或者:

jQuery(".xg_module_body .postbody").last("a").addClass("continue");

关于jquery - 这段代码有问题吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6068618/

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