中国大学MOOC: 运行下列JavaScript代码,则弹出的对话框中显示的数值是多少?var test=(false)?16:30;alert(test);
举一反三
- 运行下列JavaScript代码,则弹出的对话框中显示的数值是16。var test=(false)?16:30;alert(test); A: 正确 B: 错误
- 运行下列JavaScript代码,则弹出的对话框中显示的数值是多少?var a=(5<9)?56:80;alert(a);
- 在JavaScript中,alert("test")与Alert("test") 都表示以警告框的形式弹出test提示信息。(1.0)
- 下列程序中alert按顺序分别弹出()()()var a =10; function test(){ a=100; alert(a); alert(this.a);var a;alert(a);} test();
- 智慧职教: alert("test")与Alert("test")都表示以警告框的形式弹出test提示信息