Visual Studio 中的 javascript 智能感知

发布于 2024-11-26 20:39:02 字数 248 浏览 2 评论 0原文

  1. 如何在 Visual Studio 2008 和 Visual Studio 2010 中获取 JavaScript IntelliSense?
  2. 如何在 Visual Studio 2008 和 Visual Studio 2010 中获取 jQuery IntelliSense?
  3. 如果我无法获得上述内容,请告诉我'哪个是最常用的 JavaScript 编辑器,可以替代 VS 版本来编辑 javascript 文件?
  1. How can I get JavaScript IntelliSense in Visual Studio 2008 and in Visual Studio 2010 ?
  2. How can I get jQuery IntelliSense in Visual Studio 2008 and in Visual Studio 2010 ?
  3. 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 技术交流群。

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

发布评论

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

评论(6

素染倾城色 2024-12-03 20:39:02

或者您可以简单地将 javascript 拖放到 .js 文件中,它会创建如下条目:

/// <reference path="jquery-1.6.2.js" />

在我的 VS 2010 (Premium v​​ersion) 上工作正常

or you can simply drag and drop your javascript into your .js file and it creates entry like this:

/// <reference path="jquery-1.6.2.js" />

worked fine on my VS 2010 (Premium version)

猛虎独行 2024-12-03 20:39:02

我将 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.

來不及說愛妳 2024-12-03 20:39:02

转到“工具”-“选项”-“文本编辑器”-“Javascript”-“智能感知”-“参考”,然后在“隐式 Web”组中放置对您正在使用的 jquery 版本的智能感知文件的引用。

或者

在 _references.js 文件中放置对智能感知文件的“添加引用”,您可以将其添加到项目的 Scripts 文件夹中。

/// <reference path="jquery-1.8.2.js"/>
/// <reference path="jquery-1.8.2.min.js"/>
/// <reference path="jquery-1.8.2.intellisense.js"/>

虽然这只会为您所在的项目提供智能感知,第一个将为任何打开的 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.

/// <reference path="jquery-1.8.2.js"/>
/// <reference path="jquery-1.8.2.min.js"/>
/// <reference path="jquery-1.8.2.intellisense.js"/>

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

把人绕傻吧 2024-12-03 20:39:02
  1. VS 2008/2010 内置了 JavaScript IntelliSense。
  2. 如果您的 jQuery 文件旁边有相应的“-vsdoc.js”文件,则 VS 2010 提供开箱即用的 IntelliSense,而 VS 2008 需要安装 SP1 以及 http://code.msdn.microsoft.com/KB958502/Release/ProjectReleases.aspx?ReleaseId=1736
  3. 没必要,真的。
  1. VS 2008/2010 has built in JavaScript IntelliSense.
  2. If you have the corresponding "-vsdoc.js" file next to your jQuery file VS 2010 offers IntelliSense out of the box and VS 2008 needs SP1 installed and the patch at http://code.msdn.microsoft.com/KB958502/Release/ProjectReleases.aspx?ReleaseId=1736
  3. No need, really.
绝情姑娘 2024-12-03 20:39:02

您应该从 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.

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