jquery,等待完成

时间:2010-08-11 13:21:43

标签: jquery

如果只在第一个函数完成后才能运行第二个函数?

$(document).ready(function() {
 $("#first").load("first.php?id="+ Math.random());
 $("#second").load("second.php?id="+ Math.random());
});

1 个答案:

答案 0 :(得分:2)

load()附带一个回调参数:

$(document).ready(function() {
 $("#first").load("first.php?id="+ Math.random(), {}, function() {
  $("#second").load("second.php?id="+ Math.random());
 });
});

{}用于将空对象传递给data参数。