我有一个带有Facebook custom share link的弹出窗口。
http://www.facebook.com/sharer.php?u=<url to share>&t=<title of content>
如何将网址u
与http://google.com/?q=bla
等参数一起使用?看起来facebook总是剪掉参数。
答案 0 :(得分:6)
您应该对参数进行URL编码。
var facebook_url = 'http://www.facebook.com/sharer.php?'+
'u='+encodeURIComponent('http://google.com/?q=bla')+
'&t='+encodeURIComponent('Some Page Title');