自定义 js/jQuery 代码仅在 IE7 和 IE7 上生成错误IE8:对象不支持此属性或方法

发布于 2025-01-07 03:16:22 字数 645 浏览 0 评论 0原文

我有自定义的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

锦上情书 2025-01-14 03:16:22

嗯,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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文