0

我在我的一个 Wordpress 安装中使用无限滚动,并且在加载新帖子时遇到问题,因为社交按钮没有加载。

我通过将以下内容添加到 Facebook 的回调中来解决此问题,例如按钮和 Twitter 共享。但是,我无法为 Reddit 提交按钮找到类似的解决方案。

 twttr.widgets.load();
 FB.XFBML.parse();

任何帮助将不胜感激!

我的标记包括按钮:

 <div class="socialshare">
 <div class="reddit">
 <script type="text/javascript">
 reddit_url = "<?php the_permalink(); ?>";
 reddit_newwindow = "1";
 </script>
 <script type="text/javascript" src="http://en.reddit.com/static/button/button1.js"></script>
 </div>
 </div>
4

1 回答 1

0

我相信 Reddit 没有花哨的 JavaScript API。一个简单的解决方案是从这个脚本中获取代码(示例链接)。在您的回调函数中,遍历您想要显示按钮的所有相应 HTML 元素,然后在那里执行代码。

于 2013-03-06T15:12:02.527 回答