下面的代码将 myid 变量发布到 url.php。
$.ajax({
url:'url.php' //'url.php,test.php' is invalid
,async: true
,type : 'POST'
,cache: false
,data : 'myid=' + myid
,dataType: 'html'
,success: function(data){
$('body').html(data);
FB.XFBML.parse();
}
}
如何同时将其发布到多个其他文件?我还需要各种文件中的 myid。