我想知道是否有任何事件可以确认使用JQuery加载了整个页面而没有任何错误。

没有任何错误:我的意思是,如果缺少某些js或CSS文件,则页面加载有错误。

最佳答案

$(document).ready(function(){
    //the DOM is ready for manipulation

});

$(document).load(function(){
   //the DOM is ready and external resources have been downloaded.
   //this may not always fire due to failed requests for external resources.
});

10-06 07:58