自定义 js/jQuery 代码仅在 IE7 和 IE7 上生成错误IE8:对象不支持此属性或方法
我有自定义的 js/jquery 代码,它可以在所有浏览器上正常运行,包括 IE9(除了 IE8 和 IE 7)。它说:对象不支持此属性或方法。 http://screencast.com/t/YJkW5NF2gg
代码从该行开始,错误指的是看起来像:
if(myBrand.indexOf(item) > -1){
$("ul.brandList", self.checkboxContainer).append(p);
}else if(myPro.indexOf(item) > -1){
$("ul.proList", self.checkboxContainer).append(p);
}else if(mySize.indexOf(item) > -1){
$("ul.sizeList", self.checkboxContainer).append(p);
}else if(myColor.indexOf(item) > -1){
$("ul.colorList", self.checkboxContainer).append(p);
}
有什么想法如何解决这个问题吗?
I have custom js/jquery code which is running fine on all browsers including IE9 except IE8 and IE 7. It says: Object does not support this property or method. http://screencast.com/t/YJkW5NF2gg
The code starts from the line, error refers to, is look like:
if(myBrand.indexOf(item) > -1){
$("ul.brandList", self.checkboxContainer).append(p);
}else if(myPro.indexOf(item) > -1){
$("ul.proList", self.checkboxContainer).append(p);
}else if(mySize.indexOf(item) > -1){
$("ul.sizeList", self.checkboxContainer).append(p);
}else if(myColor.indexOf(item) > -1){
$("ul.colorList", self.checkboxContainer).append(p);
}
Any Idea how to resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,IE 只是不知道这个方法。正如错误所说...(谷歌也告诉你!)
你要么必须从数组中创建一个 jQuery 对象,要么自己定义数组原型的函数,请参阅 此处 和 此处
Well, IE just doesn't know that method. As the error says... (And google tells you, too!)
You'd either have to create a jQuery object out of the array or define the function to the array prototype yourself, see here and here