是否可以在同一页面上使用多个类似 facebook 的按钮但共享不同的数据。
我知道我可以使用以下代码设置 og:image, og:title 动态
jQuery('.item-facebook').hover(function()
{
var image_url = $(this).parent().parent().parent().find('.item-left .photo-url').attr('src');
jQuery('meta[property="og:image"]').attr('content', image_url);
});
但是,当我悬停按钮时,opengraph 标签在页面中更新,但 iframe 已经加载。
有人知道一个好的解决方案吗?