如何将 Jquery VS intellisense 引用添加到 VS 2010 中的视图中

发布于 2024-11-25 20:11:41 字数 274 浏览 2 评论 0原文

我正在尝试让 Jquery intellisense 在 Visual Studio 2010 中工作。

我在 StackOverflow 上四处查看并尝试将其添加到我的视图中:

@{
     /// <reference path="/Scripts/jquery-1.5.1-vsdoc.js"/>
 }

这不起作用..我通过向每个视图添加相同的脚本标记来使其工作,但是这个不太理想,因为我想将所有脚本保留在布局页面底部的一个位置。

I am trying to get Jquery intellisense working in Visual Studio 2010.

I've looked around on StackOverflow and tried adding this to my view:

@{
     /// <reference path="/Scripts/jquery-1.5.1-vsdoc.js"/>
 }

That's not working.. I've got it working by adding the same script tag to each view but this is less than ideal since i want to keep all my scripts in one place at the bottom of my layout page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一刻暧昧 2024-12-02 20:11:41

IDE 仍然会看到它们,并提供 IntelliSense,但它们在运行时不会执行任何操作。

Add the <script> tags to each view inside an @if (false) { ... } block.

The IDE will still see them, and provide IntelliSense, but they won't do anything at runtime.

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