FB和Twitter中的个人资料链接共享

时间:2012-04-13 04:29:28

标签: javascript javascript-events facebook-javascript-sdk

我有以下JavaScript代码用于在Facebook和Twitter上分享链接....

<script type="text/javascript">
 function show_fb(id)
 {

 alert('http://www.facebook.com/sharer.php?u=
 http://devel.testingsite.biz/testxxxxx.php?cmd=profile&id='+id+'');

 u=location.href;
 t=document.title;window.open('http://www.facebook.com/sharer.php?u={https_server}testxxxxx.php?cmd=profile&id='+id+'','sharer','toolbar=0,status=0,width=626,height=436');
return false;
}
 </script>

在HTML方面,它显示为

<li><a href="javascript:void(0)" onclick="show_fb({uid});" class="icon_h3"></a></li>

这个功能正常工作,它显示了共享窗口,但我要分享的链接是没有id的链接

http://devel.testingsite.biz/testxxxxx.php?cmd=profile

但是在alert函数中打印时相同的链接显示了id(如下所示)。我需要生成以下链接。

http://devel.testingsite.biz/testxxxxx.php?cmd=profile&id=645

我的功能是否有任何错误

1 个答案:

答案 0 :(得分:0)

你能试试吗?

    <script type="text/javascript">
 function show_fb(id)
 {

 alert("http://www.facebook.com/sharer.php?u=
 http://devel.testingsite.biz/testxxxxx.php?cmd=profile&id='+id+'");

 u=location.href;
 t=document.title;
window.open("http://www.facebook.com/sharer.php?u={https_server}testxxxxx.php?cmd=profile&id='+id+'','sharer','toolbar=0,status=0,width=626,height=436");
return false;
}
 </script>