0

下面的代码将 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。

4

2 回答 2

1
function send(_url) {
    $.ajax({
        url: _url
        ,async: true
        ,type : 'POST'
        ,cache: false
        ,data : 'myid=' + myid
        ,dataType: 'html'
        ,success: function(data){
            $('body').html(data);
            FB.XFBML.parse();
        }
    }
}

['url.php','test.php'].forEach(send);
于 2013-10-22T11:25:49.800 回答
0

也许在您的 url.php 中根据需要向其他 PHP 文件发出 curl POST 请求

于 2013-10-22T10:36:01.830 回答