jquery优雅降级ie5.5
在不受支持的浏览器(例如 IE5.5)上禁用 jquery 的最佳方法是什么?我只是想关闭错误;我并不是想让它 100% 正常工作或者只是为了停止抛出错误;如果这没什么大不了的话。如果这很难做到,那么我就不会那么烦恼。
What would be the best way of disabling jquery on an unsupported browser eg IE5.5. I just want to turn the errors off; I'm not trying to get it to work 100% properly or anything just to stop throwing errors; that's if it's not that big of a deal. If it is very difficult to do then I'm not that bothered.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 HTML5 Boilerplate 方法 将类添加到您的
html
标签 如果 IE 版本低于 6:那么在你的 JS 顶部放一个
if
:Edit
应该想到这一点!与其这样做,不如在包含 JS 文件时使用 H5BP 方法:
这会将 JS 文件传递到 IE6+ 和所有其他浏览器。
Use the HTML5 Boilerplate method to add a class to your
html
tag if the IE version is less than 6:Then put an
if
right at the top of your JS:Edit
Should have thought of this! Rather than doing that, just use the H5BP method when including your JS files:
This delivers the JS files to IE6+ and all other browsers.