由於兩種意見建議你可以去這兩種方法,要麼運行Ajax.Request
兩次或使用數組來保存目標網址。
function change_select_employee(){
var p = "&month="+document.getElementById('F02S').value;
document.getElementById('select_employee').innerHTML = "";
new Ajax.Request('a.php', { method:'get', onSuccess:onLoad_select ,parameters:p});
new Ajax.Request('b.php', { method:'get', onSuccess:onLoad_select ,parameters:p});
}
或
function change_select_employee(){
destinations = ["a.php","b.php"];
var p = "&month="+document.getElementById('F02S').value;
destinations.forEach(function(dest) {
new Ajax.Request(dest, { method:'get', onSuccess:onLoad_select ,parameters:p});
});
document.getElementById('select_employee').innerHTML = "";
}
可以甚至定義目標URL陣列的主要功能外,並將其傳遞作爲參數傳遞給change_select_employee($destinations)
簡單,使用AJAX請求兩次:) – Daimos
製造陣列所有的位置,並循環...這是最簡單的方法,如果有任何其他 –
,因爲我不知道該怎麼做,我想發送一次,請求會發送2個文件,謝謝所有答案。 –