我得到了一个 for 循环数据,其中每个数据都有一个 facebook 分享按钮,我的目标是当用户点击分享按钮时,它将指向其分配的页面。
这是我的分享按钮 div:
<img id = "share_button" src="img/share.png">
FB代码:
<script type="text/javascript">
$(document).ready(function(){
$('#share_button').click(function(e){
e.preventDefault();
FB.ui(
{
method: 'feed',
name: 'This is the content of the "name" field.',
link: ' http://www.test.com/',
picture: '',
caption: 'This is the content of the "caption" field.',
description: 'This is the content of the "description" field, below the caption.',
message: ''
});
});
});
</script>
有没有办法可以将 ajax 脚本编辑成这样的:
link: ' http://www.test.com/test.php?id="<?php echo $id; ?> ',