3 在 Visual Studio 2008 中使用 jquery-1.6.1-vsdoc.js 时出现错误
我正在使用带有 KB958502(.vsdoc 修补程序)的 Visual Studio 2008 SP1。这允许我们使用 IntelliSense 自动完成 JavaScript。
当我使用 jquery-1.6.1-vsdoc ,存在三个错误:
更新 JScript IntelliSense 时出错:jquery-1.6.1-vsdoc.js:“rootjQuery”未定义@ 66:2
预期表达式 @ 1505:16
预期表达式 @ 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:
Error updating JScript IntelliSense: jquery-1.6.1-vsdoc.js: 'rootjQuery' is undefined @ 66:2
Expected expression @ 1505:16
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我一直在寻找 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!
如果您想使用
jquery intellisense 支持
,您可以使用jquery 1.4.1
和jquery 1.4.1.vsdoc
。在VS2008中测试If you want to use
jquery intellisense support
you can usejquery 1.4.1
andjquery 1.4.1.vsdoc
. It is tested in VS2008