$.ajax({
url: "test.html",
context: document.body
}).done(function() {
//show data
});
如何將數據從ajax請求保存到變量中,然後顯示它? 以及如何在處理過程中顯示消息「loading ...」?如何將ajax調用請求數據保存在變量中並顯示它?
$.ajax({
url: "test.html",
context: document.body
}).done(function() {
//show data
});
如何將數據從ajax請求保存到變量中,然後顯示它? 以及如何在處理過程中顯示消息「loading ...」?如何將ajax調用請求數據保存在變量中並顯示它?
$.ajax({
url: "test.html",
context: document.body
}).done(function(data) {
alert(data);
});
更新:
$.ajax({
url: "test.html",
context: document.body
}).done(function(data) {
$('#loading').hide();
// alert(data);
});
標記:
<div id='loading'></div>
可能的重複感謝如何在請求發送時顯示「加載...」消息? –
加載消息,在AJAX使用beforeSend()。
beforeSend : function() {
$('body').html('Loading...');
}
你可以嘗試這樣的事情。在你的函數可以顯示加載DIV
function your_ajax() {
$('#loading').show();
$.ajax({
url: "test.html",
context: document.body
}).done(function(data) {
$('#loading').hide();
alert(data);
});
}
請在你的HTML添加此部分
<div id="loading" style="display:none;">Loading </div>
謝謝@Shafeeq –
如何在超時請求中包裝這個例子,例如每5秒刷新一次? –
功能(數據){...}); ?? – MightyPork
http://stackoverflow.com/questions/905298/jquery-storing-ajax-response-into-global-variable –