我目前使用下面的腳本來填充一些div數據指定的函數從PHP文件,我需要AJAX負荷
function fillLeagues(){
var load = $.get('drawleague.php');
$(".really").html('Refreshing');
load.error(function() {
console.log("Mlkia kaneis");
$(".really").html('failed to load');
// do something here if request failed
});
load.success(function(res) {
console.log("Success");
$(".really").html(res);
});
load.done(function() {
console.log("Completed");
});
}
我想知道是否有可能調用某個功能在drawleague.php
文件,將返回信息,因爲我不想用10個PHP文件來填充10個div。
使用GET參數,讓輸出根據這些參數 – thpl
我沒有想到的是你的PHP腳本處理。非常感謝! – LefterisL