Visual Studio 2008 不支持 Jquery 智能感知

发布于 2024-11-07 02:04:04 字数 366 浏览 1 评论 0原文

我有 Visual Studio 2008 专业版。 SP1 和修补程序

KB958502 - JScript 编辑器支持 “-vsdoc.js”IntelliSense 文档。文件

已安装,但 VS2008 中仍然没有智能感知支持。

<script type="text/javascript" src="Scripts/jquery-1.6.1.js">
$("#TextBox1").
</script>

在此处输入图像描述

I have Visual Studio 2008 Pro. SP1 and Hotfix

KB958502 - JScript Editor support for
“-vsdoc.js” IntelliSense doc. files

installed, but still no intellisense Support is available in VS2008.

<script type="text/javascript" src="Scripts/jquery-1.6.1.js">
$("#TextBox1").
</script>

enter image description here

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

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

发布评论

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

评论(4

苍景流年 2024-11-14 02:04:04

我不确定,但标签不应该具有“src”或内联内容,但不能同时具有两者吗?

您的代码同时具有它们。
也许这会起作用:

<script type="text/javascript" src="Scripts/jquery-1.6.1.js"></script>

<script type="text/javascript">
$("#TextBox1").
</script>

I'm NOT sure but shouldn't a tag should have EITHER a 'src' or inline content but not both?

Your code has them both.
Maybe this would work:

<script type="text/javascript" src="Scripts/jquery-1.6.1.js"></script>

<script type="text/javascript">
$("#TextBox1").
</script>
小清晰的声音 2024-11-14 02:04:04

VS 2008 中的 jQuery Intellisense - 看一下注释...

确保这个路径正确:src="Scripts/jquery-1.6.1.js"

下载并尝试也添加 vsdoc 文件:

<script type="text/javascript" src="Scripts/jquery-1.6.1-vsdoc.js" />

您正在引用 jQuery 脚本文件,同时您尝试在该脚本代码块中编写代码。我认为这是不可能的。至少我从来没有尝试过这种方式。

这样做(这应该有效):

<script type="text/javascript" src="../../Scripts/jquery-1.6.1.js" />
<script type="text/javascript" src="../../Scripts/jquery-1.6.1-vsdoc.js" />

<script type="text/javascript">

$("#TextBox1").

</script>

jQuery Intellisense in VS 2008 - Take a look at the comments...

Make sure that this path is correct: src="Scripts/jquery-1.6.1.js"

Download and try adding the vsdoc file too:

<script type="text/javascript" src="Scripts/jquery-1.6.1-vsdoc.js" />

You're referencing the jQuery script file and at the same time you're trying to write code within that script code block. This isn't possible I think. I at least have never tried this way.

Do this way instead (this should work):

<script type="text/javascript" src="../../Scripts/jquery-1.6.1.js" />
<script type="text/javascript" src="../../Scripts/jquery-1.6.1-vsdoc.js" />

<script type="text/javascript">

$("#TextBox1").

</script>
梦境 2024-11-14 02:04:04

你有 1.6.1 的 -vsdoc.js 吗?我认为 1.4.1 之后就没有可用的了,可以在这里找到:

http://docs.jquery.com/ Downloading_jQuery

因此,如果您引用 1.6.1,VS 可能不会自动找到它。您可以将 1.4.1 重命名为 1.6.1 并确保它位于同一路径中。

或者,您可以使用 // 引用标签直接引用 vsdoc,如 Scott Gu 文章中所述。

Do you have a -vsdoc.js for 1.6.1? I didn't think one was available past 1.4.1 which is available here:

http://docs.jquery.com/Downloading_jQuery

So VS presumably won't find it automatically if you're referencing 1.6.1. You could rename the 1.4.1 to 1.6.1 and make sure it's in the same path.

Alternatively you can reference the vsdoc directly using the // reference tags, as explained in the Scott Gu article.

你对谁都笑 2024-11-14 02:04:04

您应该使用 jquery-1.4.1.jsjquery-1.4.1.min.jsjquery-1.4.1-vsdoc 代替vs2008中1.6.1版本的

You should use jquery-1.4.1.js , jquery-1.4.1.min.js and jquery-1.4.1-vsdoc insteated of version 1.6.1 in vs2008

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