可能重复:
How to add a Facebook “Like” button to an AJAX driven page
我有一个漫画网站(www.hittingtreeswithsticks.com),每次有人获得下一个或上一个漫画时,我都会使用window.history.pushState(null, null, '.?action=viewcomic&id=' + imgIndex);
来更新网址ID。
我还想将评论/喜欢的功能与每个漫画相关联,这样我就可以看到它们的受欢迎程度。
我在视图漫画页面上添加了以下fb喜欢和评论代码(很快将更改为DISQUS):
<center>
<div class="fb-like" data-href="http://www.hittingtreeswithsticks.com/" data-send="true" data-layout="button_count" data-width="450" data-show-faces="true" data-font="trebuchet ms"></div>
<br />
<br />
<div class="fb-comments" data-href="http://www.hittingtreeswithsticks.com" data-num-posts="2" data-width="470"></div>
</center>
截至目前,喜欢的内容只与整个网站相关联,而不是特定的漫画...所以,如果我去下一部漫画,它仍然与数字(645)和评论相同。
我可以做些什么来将喜欢/评论或其他任何内容与特定漫画ID相关联?
谢谢!