我正在使用jquery.prettyPhoto在我的网站上显示相册。我激活了social_tools
在每张照片下方显示 twitter 和 facebook 小部件。
问题是如果有人喜欢一张照片,所有其他照片都会得到一个喜欢,所以每张照片都有 234 个喜欢。
这是因为我location.href
在显示另一张图片时没有改变吗?
激活我的相册的代码是:
$.fn.prettyPhoto({
slideShow: 3000,
social_tools: ''
+'<div class="pp_social">'
+'<div class="twitter">'
+'<a href="http://twitter.com/share" class="twitter-share-button" data-count="none">Tweet</a>'
+'<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>'
+'</div>'
+'<div class="facebook">'
+'<iframe src="http://www.facebook.com/plugins/like.php?locale=nl_NL&href='+location.href+'&layout=button_count&show_faces=true&width=500&action=like&font&colorscheme=light&height=23" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:23px;" allowTransparency="true"></iframe>'
+'</div>'
+'</div>'
});
我该如何解决这个问题?
提前致谢。