jQuery autocomplete IntelliJ vs Netbeans

I have one question. Why IntelliJ Idea 14 has so bad jQuery plugin autocomplete while Netbeans has great support. Is there any way to force autocomplete behaviour in IntelliJ like Netbeans?

Idea
IntelliJ Idea jQuery自动完成
Netbeans

Netbeans jQuery自动完成


What you are seeing is IntelliJ being actually more thorough. Like many jQuery methods .post() is overloaded. The actual documentation shows that it could be the method NetBeans is suggesting, but it could also use the signature .post([settings]) . This means at the time you requested auto-completion there is no one right answer.

There is hope! Once you start entering parameters to your call IntelliJ will match the appropriate method signature and begin suggesting completion based on that. This may take a moment, depending on your settings.

链接地址: http://www.djcxy.com/p/63650.html

上一篇: NetBeans中的Sass语法(我的意思是sass不是scss)

下一篇: jQuery自动完成IntelliJ vs Netbeans