通过 facebook 的 sharer.php 共享网站资料时遇到问题
使用标准代码打开窗口:
url = "http://www.facebook.com/sharer.php?s=100&p[title]=" + encodeURIComponent(title) + "&p[summary]=" + encodeURIComponent(description) + "&p[url]=" + encodeURIComponent(url) + "&p[images][0]=" + encodeURIComponent(image) + "&nocache=" + randomString(8);
window.open(url, '', 'toolbar=0,status=0,width=626,height=436');
其中 p[images][0] 具有正确的图像 url。
完整的 URL 示例:CLICKCLAC
正如您在 Firebug 中看到的,DOM 树中有正确的图像,但它有“hidden_elem”类挂起。任何想法如何使它工作,朋友?
或者如何在 iframe 窗口中启动我的 js:D