我有一個jquery ajax請求。 在頁面加載時顯示加載圖像。 這是行之有效的,但我想顯示加載gif至少1秒。jQuery ajax加載 - 顯示加載圖像一分鐘。 1秒
我已經嘗試過這樣的:Ajax loader image: How to set a minimum duration during which the loader is shown?, 但它不工作。
我的代碼是:
<div id="ajaxcontent"><img src="loader.gif" id="ajaxloading" /></div>
和
$.ajax({
// some code for the request
success: function() {
$('#ajaxcontent').text(myResultText);
}
我也試過被顯示的文本之前添加.delay(1000),但這也不起作用。
這是同我的回答:) – erimerturk