嗨,我使用AJAX首次Ajax調用爲異步
我我使用get方法在阿賈克斯
我的代碼Ajax代碼是
$("#comboBox1").change(function() {
var text2 = $(this).children(':selected').text();
var value2 = $(this).val();
alert(text2 + " = " + value2);
document.getElementById("hid1").value = value2;
$.get('Check1',{hid1:value2},function(res){
$('#block3').load("new1.jsp");
});
if($('#cb5').length){
alert("Found");
combo2=$('#cb5').html();
alert(combo2);
}else{
alert("Not-found");
}
});
我需要調用異步那麼,把async:true
放在我的代碼裏。
我第一次使用Ajax,所以我劑量不知道.... 如果有人幫我...
好,謝謝後執行代碼... :) 我會嘗試$ ajaxSetup – Chintan
,但我並沒有阿賈克斯的足夠的知識...... 我只是學習$ .get()方法從互聯網.... 我試圖打電話使用$ .ajax() 但無法運行... – Chintan
如果您將我的$ .get()函數轉換爲$ .ajax( )所以它會對我更有幫助... :) – Chintan