我在这样的页面上有两个div:
<div id="content_1"></div>
<div id="content_2"></div>
通过执行以下操作,这两个div的内容通过Ajax更新:
$('#content_1').load('content_1_url', function(){
$.ajax({
type: 'GET',
url: 'content_2_url',
success: function(data) {
$('#content_2').html(data);
}
});
});
正如您在上面所看到的,content_1
的内容来自对网址content_1_url
的ajax调用的返回结果,而content_2
的内容来自返回的结果ajax调用url content_2_url
。这工作正常,但我遇到的问题是每个div的内容不会在页面上的同一时间更新。第一个div内容首先显示,然后一秒钟后出现第二个div的内容。我希望它们同时出现。我知道如何解决这个问题吗?
谢谢
答案 0 :(得分:0)
那是怎么回事:
var ajax1 = $.ajax({
type: 'GET',
url: 'content_1_url'
}), ajax2 = $.ajax({
type: 'GET',
url: 'content_2_url'
});
$.when(ajax1,ajax2).done(function(data1,data2){
$('#content1').html(data1[0]);
$('#content2').html(data2[0]);
});
答案 1 :(得分:0)
这样的东西?
var res1, res2;
$.ajax({type: 'GET', url: 'content_1_url', success: function(data){res1 = data;}, async: false});
$.ajax({type: 'GET', url: 'content_2_url', success: function(data){res2 = data;}, async: false});
$('#content1').html(res1);
$('#content2').html(res2);
答案 2 :(得分:0)
尝试这样的事情:
$.when($.ajax("content_1_url"), $.ajax("content_1_url"))
.then(myFunc, myFailure);
function myFunc(){
//This execute after both ajax calls finish ok
}
function myFailure(){
//This execute after either ajax calls fails
}
我编辑了这是完整的代码(来自jquery oficial documentation http://api.jquery.com/jQuery.when/)只需将page1.php和page2.php更改为你的网址:
$.when($.ajax("/page1.php"), $.ajax("/page2.php")).done(function(a1, a2){
/* a1 and a2 are arguments resolved for the
page1 and page2 ajax requests, respectively.
each argument is an array with the following
structure: [ data, statusText, jqXHR ] */
var data = a1[0] + a2[0]; /* a1[0] = "Whip", a2[0] = " It" */
if ( /Whip It/.test(data) ) {
alert("We got what we came for!");
}
});