我在页面加载时有很多ajax调用。有时我甚至嵌套了ajax调用。 像这样
function getAll(){
$.when(http_get('url1')).then(function(response){
$.when(http_get('url2')).then(function(response){
$.when(http_get('url3')).then(function(response){
现在我怎样才能获得在预加载器中显示的整体ajax加载百分比。