Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以将 facebook like 插入到fancybox 的流行图像中?
fancybox 只是另一个 ajax 调用。您可以使用 HTML5 LIKE 按钮
只需在加载完成时触发解析功能。
在 fancybox load 之后尝试下面的简单代码,你可以运行:
$("#foo").fancybox({ 'onComplete':function() { FB.XFBML.parse(); } });
http://developers.facebook.com/docs/reference/plugins/like/