我想知道是否有任何事件确认整个页面已经使用JQuery加载没有任何错误。
没有任何错误:我的意思是如果缺少某些js或css文件,那么页面会加载错误。
答案 0 :(得分:2)
$(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.
});
答案 1 :(得分:1)
不,你不能确定页面上是否有错误。根据浏览器的不同,您可以在firefox中使用某些特定的API,例如firebug api,但没有标准的方法可以实现。
如果出错,则表示任何javascript错误,如语法错误运行时错误
答案 2 :(得分:0)
错误可能发生在内部,但低于一个可确保加载所有内容,包括图形
$(window).load(function () {
// run code
});