无法让 jQuery 智能感知在 Visual Studio 2010 Professional 中工作
我从解决方案中删除了旧的 1.4.1 文件,仔细检查不存在其他 jQuery 包,然后从控制台运行 install-package jQuery
。下载了三个文件:
jquery-1.6.4.js jquery-1.6.4.min.js jquery-1.6.4-vsdoc.js
我重建了我的解决方案,它执行时没有抛出异常。
我去在我的一个视图中写一些 jQuery,并且智能感知不起作用。
我还需要做些什么吗?我需要手动让 VS “查看”vsdoc 文件吗?
编辑2:让它工作。
I erased the old 1.4.1 files from my solution, double-checked that no other jQuery packages existed, and then ran install-package jQuery
from the console. Three files were downloaded:
jquery-1.6.4.js
jquery-1.6.4.min.js
jquery-1.6.4-vsdoc.js
I rebuilt my solution, and it executed without exceptions being thrown.
I go to write some jQuery in one of my views, and intellisense does not work.
Is there something else I need to do? Do I need to manually make VS 'see' the vsdoc file?
EDIT 2: Got it working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的猜测是,您可以将其包含在尝试访问智能感知的页面中:
您可以在 这个问题的答案。
My guess would be that you could include this in the page where you're attempting to access the intellisense:
You can find further examples of wiring up jquery intellisense in this question's answers.
在 js 文档中创建参考路径
或者
在您的解决方案中,获取 vsdoc 并将其逐字拖到您正在处理的 javascript 源中,然后它将起作用。可能还有另一种方法可以让它适用于所有 js 文档,但这就是我之前所做的。
将 vsdoc 拖入 js 文档后,您将看到引用
这里是一个替代来源
Create a reference path in the js doc
OR
In your solution, take the vsdoc and literally drag it into your javascript source that you're working on, it will then work. There may be another way to get it to work for all your js docs, but that's how I have done it before.
Once you drag the vsdoc into the js doc, you will see the reference
Here is an alternative source