我使用以下代码在FB上分享:
function shareOnFacebook(blockKey) {
FB.ui({
method: "share",
href: "http://moranplant.org",
}, function(response){});
};
如何将blockKey添加到链接中,以使链接如下所示: http://moranplant.org/?blockid=123 blockKey == 123?
我试过了:
href: "http://moranplant.org/?blockid=" + blockKey,
但它给链接带来了一个非常奇怪的结果: " http://moranplant.org/?blockid=%27+++blockKey"
答案 0 :(得分:0)