我正在使用 Javascript,当我输入诸如“Math.”之类的内容时,我没有得到任何建议,例如“PI”或“random()”。
我尝试安装一个名为 Aptana 的插件,但它并没有解决我的问题。
当我尝试通过构造函数初始化对象时,也会发生同样的问题:
function Box(x, y) {
this.x = x;
this.y = y;
}
var box = new Box(1, 2);
box. // nothing happens, even when I force it with CTRL + SPACE