同时将php变量发布到多个其他文件

时间:2013-10-22 10:33:10

标签: php ajax

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

2 个答案:

答案 0 :(得分: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);

答案 1 :(得分:0)

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