我有一个计算每台服务器性能的网站。其中一个要求是关于表演的中心部分页面必须先完成加载,然后才能在后台执行另一个功能。
此中心部分页面使用 ajax 调用。它们是在document.ready
js 文件中定义的:
$(document).ready(function () {
// ajax call here
// another ajax call here
// third ajax call here
});
然后我想在文档里面的函数准备好之后执行的函数:
function functionA() {
// some codes here
});
我尝试使用这个:
$.when(document).ready(function () {
}).done(functionA);
但我不能让它运行..任何建议都将不胜感激。提前致谢!