何时从 jQuery 中删除了handleError?
我正在重新访问一些旧代码,发现它不适用于 jQuery 1.6,因为它找不到 $.handleError()
。快速搜索 jQuery 代码没有显示任何内容,所以我猜这个函数已被删除/替换。
有谁知道handleError函数首先缺失的是哪个版本,以及它是否有直接替换?
I'm revisiting some old code, and have found it doesn't work with jQuery 1.6 because it cannot find $.handleError()
. A quick search of the jQuery code shows nothing, so I guess this function has been removed/replaced.
Does anyone know which version the handleError function was first missing from, and if it has a direct replacement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来
handleError()
在 jQuery 1.5 中被删除了。我在网上看到的大多数解决方案 创建自己的错误函数。希望有帮助It looks like
handleError()
was removed in jQuery 1.5. Most solutions I've seen online create their own error functions. Hope that helps