如何将 Jquery VS intellisense 引用添加到 VS 2010 中的视图中
我正在尝试让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
标记添加到
@if (false) { ... }
块内的每个视图。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.