3 在 Visual Studio 2008 中使用 jquery-1.6.1-vsdoc.js 时出现错误

发布于 2024-11-08 02:10:15 字数 748 浏览 1 评论 0原文

我正在使用带有 KB958502(.vsdoc 修补程序)的 Visual Studio 2008 SP1。这允许我们使用 IntelliSense 自动完成 JavaScript。

当我使用 jquery-1.6.1-vsdoc ,存在三个错误:

  1. 更新 JScript IntelliSense 时出错:jquery-1.6.1-vsdoc.js:“rootjQuery”未定义@ 66:2

  2. 预期表达式 @ 1505:16

  3. 预期表达式 @ 2649:15

对于#3,第 2649 行是 "checkClone": , 并且只需要分配 true 或 false。

对于 #2,第 1505 行是 "triggered": }; 并且只需要更改为 "triggered": {} };

但我遇到了困难,是#1。第 66 行是注释行,所以很可能它指的是第 67 行,即 return new jQuery.fn.init(selector, context, rootjQuery );

有人知道如何解决这个问题吗?为什么 MS 会立即发布有 3 个错误的东西?当然,他们在发布之前会对此进行测试。

I'm using Visual Studio 2008 SP1 with KB958502 (.vsdoc hotfix). This allows us to use IntelliSense to auto-complete JavaScript.

When I use the jquery-1.6.1-vsdoc, there are three errors:

  1. Error updating JScript IntelliSense: jquery-1.6.1-vsdoc.js: 'rootjQuery' is undefined @ 66:2

  2. Expected expression @ 1505:16

  3. Expected expression @ 2649:15

For #3, Line 2649 is "checkClone": , and simply needs a true or false to be assigned.

For #2, Line 1505 is "triggered": }; and simply needs to be changed to "triggered": {} };

Where I'm getting stuck, though, is #1. Line 66 is a comment line, so most likely it's referring to Line67 which is return new jQuery.fn.init( selector, context, rootjQuery );

Anyone know how to fix this? Why would MS put something out that has 3 errors right off the bat? Surely, they test this before putting it out there.

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

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

发布评论

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

评论(2

酒儿 2024-11-15 02:10:15

我一直在寻找 VS2008 智能感知的答案,并且找到了解决方案...

在第 67 行添加下一个: rootjQuery = jQuery(document);

这使得 VS2008 的智能感知成为可能作品。

当时我不知道这是否是最好的解决方案,但它确实有效。 :P

致以最诚挚的问候。

阿波罗!

I´ve been searching for an answer to VS2008 intellisense, and I've found the solution...

Add the next at line 67: rootjQuery = jQuery(document);

And that make the intellisense of VS2008 works.

By the time I don't know if that is the best solution but it works. :P

Best regards.

Apolo!

不必你懂 2024-11-15 02:10:15

如果您想使用jquery intellisense 支持,您可以使用jquery 1.4.1jquery 1.4.1.vsdoc。在VS2008中测试

If you want to use jquery intellisense support you can use jquery 1.4.1 and jquery 1.4.1.vsdoc. It is tested in VS2008

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