2016-07-08 55 views
6
$('#demo').html('<img src="/parcel-pricer/img/ajax-loader.gif" style="margin-left:50px;width:20%;margin-bottom:10px;">'); 
$('#demo').show(); 
$('#demo').load('fast.php?send='+send+'&delv='+delv+'&quant='+quant+'&weight='+weight+'&length='+length+'&width='+width+'&height='+height+'&send1='+send1+'&delv1='+delv1+'&value='+value+'&country_send='+country_send+'&country_delv='+country_delv); 
$('#demo1').html('<img src="/parcel-pricer/img/ajax-loader.gif" style="margin-left:50px;width:20%;margin-bottom:10px;">'); 
$('#demo1').show(); 
$('#demo1').load('Timed.php?send='+send+'&delv='+delv+'&quant='+quant+'&weight='+weight+'&length='+length+'&width='+width+'&height='+height+'&send1='+send1+'&delv1='+delv1+'&value='+value+'&country_send='+country_send+'&country_delv='+country_delv); 

我使用.load()函數加載多個php文件。所有的文件都加載了一段時間,但php文件不加載一次他的負載一個接一個..所以PLZ怎麼是???如何一個一個加載php文件?

+0

你可能會使用會話,每個PHP腳本將鎖定會議。嘗試'session_write_close()'在他們每個人。 –

回答

6

嘗試使用callbacks這樣的:當它運行

//load to first target div 
$("#target_1").load("url_1", function() { 
    //load to second target div 
    $("#target_2").load("url_2", function() { 
     ... and so on if any 
    }); 
}); 
+0

謝謝你,它的工作.. –

+0

很高興我可以幫助:) –

相關問題