启用兼容模式的 IE 8 中的 Javascript 错误

发布于 2024-11-08 16:51:26 字数 700 浏览 0 评论 0原文

我正在 IE8 中以兼容模式测试我的网站,并给出以下 javascript 错误:

网页错误详细信息

用户代理:Mozilla/4.0(兼容;MSIE 8.0;Windows NT 5.1;Trident/4.0;.NET CLR 2.0.50727;.NET CLR 3.0.04506.648;.NET CLR 3.5.21022;.NET CLR 3.0.4506.2152 .NET CLR 3.5.30729;.NET4.0;.NET CLR 1.1.4322;OfficeLivePatch.0.0 时间戳:2011 年 5 月 17 日星期二 20:37:05 UTC

Message: Expected identifier, string or number
Line: 24
Char: 17
Code: 0
URI: http://www.amsdarquitetura.com.br/Project/Details?ProjectID=100

页面链接为: http://www.amsdarquitetura.com.br/Project/Details?ProjectID=100

我无法准确理解错误所在,甚至无法修复它

I'm testing my site in IE8 in compatibility mode and giving the following javascript error:

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0;. NET CLR 2.0.50727;. NET CLR 3.0.04506.648;. NET CLR 3.5.21022;. NET CLR 3.0.4506.2152;. NET CLR 3.5.30729;. NET4.0C;. NET4.0; InfoPath.1;. NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)
Timestamp: Tue, 17 May 2011 20:37:05 UTC

Message: Expected identifier, string or number
Line: 24
Char: 17
Code: 0
URI: http://www.amsdarquitetura.com.br/Project/Details?ProjectID=100

The page link is:
http://www.amsdarquitetura.com.br/Project/Details?ProjectID=100

I could not understand exactly where the error is not even fix it

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

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

发布评论

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

评论(1

坚持沉默 2024-11-15 16:51:26
$("#menu").treeview({
    animated: "fast",
    collapsed: true,
    unique: true,
});

该错误是由于最后一项后面多余的逗号造成的。

$("#menu").treeview({
    animated: "fast",
    collapsed: true,
    unique: true,
});

The error is due to the superfluous comma after your last item.

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