如果只在第一个函数完成后才能运行第二个函数?
$(document).ready(function() {
$("#first").load("first.php?id="+ Math.random());
$("#second").load("second.php?id="+ Math.random());
});
答案 0 :(得分:2)
load()
附带一个回调参数:
$(document).ready(function() {
$("#first").load("first.php?id="+ Math.random(), {}, function() {
$("#second").load("second.php?id="+ Math.random());
});
});
{}
用于将空对象传递给data
参数。