无法让 jQuery 智能感知在 Visual Studio 2010 Professional 中工作

发布于 2024-12-10 10:09:59 字数 301 浏览 0 评论 0原文

我从解决方案中删除了旧的 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 技术交流群。

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

发布评论

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

评论(2

朕就是辣么酷 2024-12-17 10:09:59

我的猜测是,您可以将其包含在尝试访问智能感知的页面中:

@if (false) {  
    <script src="/Scripts/jquery-1.6.4-vsdoc.js" type="text/javascript"></script> 
} 

您可以在 这个问题的答案

My guess would be that you could include this in the page where you're attempting to access the intellisense:

@if (false) {  
    <script src="/Scripts/jquery-1.6.4-vsdoc.js" type="text/javascript"></script> 
} 

You can find further examples of wiring up jquery intellisense in this question's answers.

乜一 2024-12-17 10:09:59

在 js 文档中创建参考路径

/// <reference path="jquery-1.6.5-vsdoc.js" />

或者

在您的解决方案中,获取 vsdoc 并将其逐字拖到您正在处理的 javascript 源中,然后它将起作用。可能还有另一种方法可以让它适用于所有 js 文档,但这就是我之前所做的。

将 vsdoc 拖入 js 文档后,您将看到引用

/// <reference path="jquery-1.6.5-vsdoc.js" />

这里是一个替代来源

Create a reference path in the js doc

/// <reference path="jquery-1.6.5-vsdoc.js" />

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

/// <reference path="jquery-1.6.5-vsdoc.js" />

Here is an alternative source

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