jQuery.readyException()


jQuery.readyException( error )返回值: 选择器

描述: 处理在 jQuery() 中包装的函数中同步抛出的错误。

当在 jQuery()jQuery( document ).ready() 或等效函数中包装的函数中同步抛出错误时,会触发此方法。默认情况下,它会在超时中重新抛出错误,以便它在控制台中记录并传递给 window.onerror,而不是被吞没。如果您想以不同的方式处理此类错误,请覆盖此方法。

示例

将接收到的错误传递给 console.error

1
2
3
jQuery.readyException = function( error ) {
console.error( error );
};