gpt4 book ai didi

ajax - 使用 addthis 按钮无限滚动

转载 作者:行者123 更新时间:2023-12-02 22:27:51 24 4
gpt4 key购买 nike

我正在我的页面上运行一些测试,我输入了一个无限滚动功能,女巫工作正常。

问题是 addthis 按钮在 10º 结果之后直到页面末尾都没有加载,因为这个内容来自另一个 php。我需要在我的 php 或 .js 文件中放入什么才能使其正常工作?

测试页是这个http://hogardelocio.com/teste2.php ,如您所见,前 10 篇文章是完美的,向下滚动页面,它会加载更多文章,但按钮不显示...

请给我一步一步的解释,因为我是 ajax 世界的初学者:)

谢谢

ps:无限卷轴的脚本是这个https://github.com/tournasdim/PHP-infinite-scrolling

最佳答案

通过 ajax 从 PHP 脚本加载内容后,您需要调用 addthis.toolbox()(在 $.ajax 成功回调中):

$.ajax({
dataType : "html" ,
url: "jquery-loadMoreComments.php?lastComment="+ $(".postedComment:last").attr('id') ,
success: function(html) {
// your existing code
addthis.toolbox('.addthis_toolbox');
}
};

这应该会重新呈现页面上的所有共享按钮。我希望这能奏效。

更新 - 将类名添加到工具箱方法

关于ajax - 使用 addthis 按钮无限滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12697799/

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