Visual Studio 2008 不支持 Jquery 智能感知
我有 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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我不确定,但标签不应该具有“src”或内联内容,但不能同时具有两者吗?
您的代码同时具有它们。
也许这会起作用:
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:
VS 2008 中的 jQuery Intellisense - 看一下注释...
确保这个路径正确:
src="Scripts/jquery-1.6.1.js"
下载并尝试也添加 vsdoc 文件:
您正在引用 jQuery 脚本文件,同时您尝试在该脚本代码块中编写代码。我认为这是不可能的。至少我从来没有尝试过这种方式。
这样做(这应该有效):
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:
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):
你有 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.
您应该使用
jquery-1.4.1.js
、jquery-1.4.1.min.js
和jquery-1.4.1-vsdoc
代替vs2008中1.6.1版本的You should use
jquery-1.4.1.js
,jquery-1.4.1.min.js
andjquery-1.4.1-vsdoc
insteated of version 1.6.1 in vs2008