让 jQuery 自动完成工作 IntelliJ 10.0.3
问候! 我在 IntelliJ 10.0.3 中将 jQuery 设置为全局库,但无法让它自动完成 jQuery 方法:-(
我按照本指南进行了 Intellij IDEA 10 中的 JavaScript 库,但没有运气。 提前致谢
Greetings!
I set up jQuery as a global library in IntelliJ 10.0.3 but I can't get it to auto-complete jQuery methods :-(
I followed this guide to JavaScript Libraries in Intellij IDEA 10, but with no luck.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
指定全局 jQuery 库后,您需要确保它在文件完成范围中定义:
1. 打开设置|JavaScript 库|使用范围。
2. 在右侧窗格中找到要设置补全的文件。
3. 从下拉列表中选择 jQuery 库(必须选中)。
应该是这样。如果您的 jQuery 库位于项目根目录下或已使用“下载库”意图下载,则不需要这样做。在后一种情况下,库会自动“附加”到您的项目文件,但对于其他文件,您必须手动设置它。请注意,您可以使用相同的“使用范围”树为整个项目或其任何子目录指定 jQuery 库。
After specifying the global jQuery library you need to make sure that it is defined in your file completion scope:
1. Open Settings|JavaScript Libraries|Usage Scope.
2. Find the file you want to set the completion for at the right pane.
3. Select jQuery library from drop-down list (it must be checked).
That should be it. This is not needed if your jQuery library is either under the project root or have been downloaded using "Download library" intention. In the latter case the library is "attached" to your project file automatically but for other files you have to set it manually. Note that you can specify the jQuery library for the entire project or any of its subdirectories using the same "Usage Scope" tree.