Aptana 和 JavaScript/jQuery IDE
我正在使用 Aptana for JavaScript 和 jQuery。
我的脚本文件没有概述,但我知道这是一个已知问题。
编辑 JavaScript 时,有没有办法添加简单的编辑快捷方式,例如:
- 突出显示块并注释/或取消注释块。
- 让智能感知识别 Jquery-UI 和其他库?
- 当我在这里询问大纲和创建的代码怎么样?
一个。是什么让 JQuery 被识别而我的脚本不被识别?
I'm using Aptana for JavaScript and jQuery.
My script files are not being outlined, but I understand that this is a known issue.
When editing JavaScript, is there a way to add simple editing short cuts like:
- High light a block and comment /or uncomment block.
- Getting intellisense to recognize Jquery-UI and other libraries?
- And while I’m here and asking what about the outliner and created code?
a. What allows JQuery to be recognized and my scripts to not be recognized?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对 2. 和 a. 的回答
阿普塔纳作弊。它了解 jQuery,并使用一些本地启发式方法来猜测某物何时是 jQuery 集合,但它不会对 javascript 进行数据流分析来确定类型。这就是为什么 jQuery 出现了,但 jQueryUI 和你的代码却没有出现。
Answers to 2. and a.
Aptana cheats. It knows jQuery and uses some local heuristics to guess when something is a jQuery collection, but it does not do data-flow analysis on the javascript to determine the type. That's why jQuery shows up, but jQueryUI and your code don't.