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