Visual Studio 中的 javascript 智能感知
- 如何在 Visual Studio 2008 和 Visual Studio 2010 中获取 JavaScript IntelliSense?
- 如何在 Visual Studio 2008 和 Visual Studio 2010 中获取 jQuery IntelliSense?
- 如果我无法获得上述内容,请告诉我'哪个是最常用的 JavaScript 编辑器,可以替代 VS 版本来编辑 javascript 文件?
- How can I get JavaScript IntelliSense in Visual Studio 2008 and in Visual Studio 2010 ?
- How can I get jQuery IntelliSense in Visual Studio 2008 and in Visual Studio 2010 ?
- If I fail to get the above, let me know 'Which is the most used JavaScript Editor which can replace VS versions for editing javascript files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
或者您可以简单地将 javascript 拖放到 .js 文件中,它会创建如下条目:
在我的 VS 2010 (Premium version) 上工作正常
or you can simply drag and drop your javascript into your .js file and it creates entry like this:
worked fine on my VS 2010 (Premium version)
我将 VS2010 与 ReSharper 6 一起使用,它添加了强大的 JS Intellisense 支持。自动完成适用于解决方案中的所有 JS 文件以及 jQuery。但它不是免费的。
I'm using VS2010 with ReSharper 6 which adds powerful JS Intellisense support. Autocomplete works for all JS files in the solution as well as jQuery. But it's not free.
转到“工具”-“选项”-“文本编辑器”-“Javascript”-“智能感知”-“参考”,然后在“隐式 Web”组中放置对您正在使用的 jquery 版本的智能感知文件的引用。
或者
在 _references.js 文件中放置对智能感知文件的“添加引用”,您可以将其添加到项目的 Scripts 文件夹中。
虽然这只会为您所在的项目提供智能感知,第一个将为任何打开的 js 文件提供智能感知。
要使用智能感知获取最新的 jquery 文件,请使用 nuget 包安装程序,默认情况下会创建一个脚本文件夹并将 jquery version.js、min.js 和 intellisense.js 文件放入...从那里您可以将它们复制到大多数 Microsoft 参考文献所在的位置,通常是
C:\Program Files (x86)\Microsoft视觉工作室11.0\JavaScript\参考文献
Go to Tools-Options-Text Editor-Javascript-Intellisense-References and place a reference to the intellisense files for the version of jquery you are using in the Implicit Web group.
OR
place an "add reference" to the intellisense file in the _references.js file which you can add to the Scripts folder of your project.
Though this will only provide intellisense for the project you are in, the first will for any open js file.
To get the latest jquery files with intellisense use the nuget package installer which by default will create a scripts folder and place the jquery version.js, the min.js and intellisense.js files into... from there you can copy them to the location most of the Microsoft references are placed which is typically
C:\Program Files (x86)\Microsoft Visual Studio 11.0\JavaScript\References
http://archive.msdn.microsoft.com/KB958502/ Release/ProjectReleases.aspx?ReleaseId=1736
哇...我按照上面描述的方法进行操作..太棒了...
http://archive.msdn.microsoft.com/KB958502/Release/ProjectReleases.aspx?ReleaseId=1736
Wow... I followed the method described above.. Awesome....
您应该从 Asp.Net CDN 获取 jQuery 文件。他们有 VSDOC,并且能够提供非常好的智能感知和文档支持。
You should get the jQuery files from Asp.Net CDN. They have VSDOC and are able to give very good intellisense and documentation support.