Jquery가 다음 코드를 계속 실행하기 전에 ajax가 실행되기를 기다리는 효과는 실제로 jquery ajax 함수의 async 매개 변수를 false로 설정하는 것입니다. 사실:
$(document).ready(function(){ loadphpernote(); window.open('http://www.phpernote.com'); }); function loadphpernote(){ var url='http://www.phpernote.com/ajax.php'; var data='action=list'; jQuery.ajax({ type:'post', url:url, data:para, async:false,//false代表只有在等待ajax执行完毕后才执行window.open('http://www.phpernote.com')语句 success:function (msg){ $('#articleList').html(msg); } }); }
jquery 로딩 대기 효과를 소개해드리겠습니다
var dates = this.options.form.getWidgetByName("dates").getValue(); $.ajax({ url: "http://127.0.0.1:9009/Brilliantzz/service/snproduct.do", data:dates, beforeSend:function() { var h = document.body.clientHeight; $("<div class=\"datagrid-mask\"></div>").css({display:"block",width:"100%",height:h}).appendTo("body"); $("<div class=\"datagrid-mask-msg\"></div>").html("正在上传生产数据,请稍候。。。").appendTo("body").css({display:"block", left:($(document.body).outerWidth(true) - 190) / 2, top:(h - 45) / 2}); }, complete:function(data) { $('.datagrid-mask-msg').remove(); $('.datagrid-mask').remove(); }, success: function(data) { alert("生产数据:"+data); }, error: function(data) { alert("上传生产数据异常!"); } });