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
Netbeans
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