jQuery.error(message)
接受一个字符串,并抛出包含这个字符串的异常。
-
1.4.1 新增jQuery.error(message)
message (String) 将要被发送的消息。
这个方法主要是为了让插件开发人员可以重载此方法,并以更好的方式显示错误消息,或者提供更多相关信息。
示例:
重载 jQuery.error 以便在 Firebug 中显示。
jQuery 代码:
jQuery.error = console.error;