我正在使用Javascript,当我输入类似“数学”的内容时,我没有得到任何建议,例如“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