Sharer链接与URL中的参数

时间:2011-09-28 13:42:20

标签: facebook facebook-sharer

我有一个带有Facebook custom share link的弹出窗口。

http://www.facebook.com/sharer.php?u=<url to share>&t=<title of content>

如何将网址uhttp://google.com/?q=bla等参数一起使用?看起来facebook总是剪掉参数。

1 个答案:

答案 0 :(得分:6)

您应该对参数进行URL编码。

var facebook_url = 'http://www.facebook.com/sharer.php?'+
  'u='+encodeURIComponent('http://google.com/?q=bla')+
  '&amp;t='+encodeURIComponent('Some Page Title');