0

ポップアップ マーカー内のコンテンツを facebook や twitter に共有する必要があります。簡単な方法はありますか? Facebook の共有ダイアログを試してみましたが、うまくいきません。

<a href="#" 
onclick="
window.open(
  'https://www.facebook.com/sharer/sharer.php?u='+encodeURIComponent(location.href), 
  'facebook-share-dialog', 
  'width=626,height=436'); 
return false;">
Share on Facebook
</a>
4

1 に答える 1

0

You'll want to use the expanded version of the sharer.php URL so you can define the title, description and image. These are passed using the p[title], p[url], p[summary] and p[images] parameters in the URL.

<a href="#" 
  onclick="
    window.open(
      'https://www.facebook.com/sharer/sharer.php?s=100&p[title]=titlehere&p[url]=' + encodeURIComponent(location.href) + '&p[summary]=yoursummaryhere&p[images][0]=https%3A%2F%2Fwww.google.com%2Fimages%2Fsrpr%2Flogo3w.png, 
      'facebook-share-dialog', 
      'width=626,height=436'); 
return false;">
Share on Facebook
</a>
于 2013-07-29T20:44:52.517 に答える