我被 Visual Studio 宠坏了(但正在寻找替代品)。所以在下面的例子中,如果我输入 FirstCue。我想查看该变量的成员(FeedbackMild 等)。
另外,我希望能够跳转到FirstCue的定义。
到目前为止,我已经查看了 NetBeans(它没有执行第一个,没有进一步查看它是否执行了第二个)(。
function clsCues () {
this.FeedbackMild=true ; //boolean- whether we provide feedback to let them know if something is allowed or now (i.e., if they click on the wrong thing we'd do a Mild Feedback "ding"
this.FeedbackCorrectIncorrect=true; //boolean -provide audio/visual feedback if their answer is correct
}
var FirstCue=new clsCues ();
FirstCue.FeedbackMild=true;