Jquery无效字符

发布于 2024-12-11 19:01:36 字数 209 浏览 0 评论 0原文

我们使用 jquery 作为滑块,对于我们公司中访问该网站的一些用户,他们得到对象不支持此属性并且滑块无法加载。

该网站在所有主要浏览器(IE 8、firefox、chrome)中都能正常运行,并且似乎是针对特定用户的?例如,我加载 IE 8 并访问该网站,该网站加载正常,另一个用户访问该网站,他们收到错误?有什么想法,你会从哪里开始测试 jquery 的安全性?

谢谢

We use jquery for a slider and for some users in our company who access the website, they get object doesn't support this property and the slider doesn't load.

The website works fine in all major browsers (IE 8, firefox, chrome) and seems to be user specific? For example I load IE 8 and go to the website, the website loads fine,another user accesses the website and they get the error? any ideas, where would you start to test security for jquery?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

那小子欠揍 2024-12-18 19:01:36

许多 IE 错误发生在选项哈希和尾随 , 上。注意 option2 true 后面的 ,

错误:

$("#id").plugin({
    option1: true,
    option2: true,
})

好:

$("#id").plugin({
    option1: true,
    option2: true
});

A lot of IE errors happen with the option hash and a trailing ,. Note the , after true of option2

WRONG:

$("#id").plugin({
    option1: true,
    option2: true,
})

GOOD:

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