wordpress 插件在 IE7 和 8 中不起作用
我的博客 (http://blog.datisdesign.com) 在 Firefox 和 IE9 中正常工作,但在 IE8,7 中博客顶部的滑块插件无法正常工作并向我显示此错误:
SCRIPT438: Object doesn't support property or method 'slice'
jquery.js?ver=1.4.4, line 149 character 392
我能做什么?
my weblog (http://blog.datisdesign.com) is working properly in Firefox and IE9, but in IE8,7 the slider plugin on top of weblog, is not working properly and shows me this error :
SCRIPT438: Object doesn't support property or method 'slice'
jquery.js?ver=1.4.4, line 149 character 392
What can I do ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为脚本 438(无论是什么)尝试使用 Array:slice,这在 9 之前的 IE 版本中未实现。
尝试在滑块 js 文件之前添加此内容。
它应该解决它,但没有承诺。
如果还是不行,那一定是 String:slice。尝试..
Because script 438 (whatever that is) tries to use Array:slice, which isn't implemented in versions of IE prior to 9.
Try adding this before your slider js file.
It should fix it, no promises though.
If it's still not working, it must be String:slice. Try..