分析以下JavaScript程序var x=prompt(“请输入1-5的数字!”,“”);switch (x)case “1”:alert(“one”);case “2”:alert(“two”);case “3”:alert(“three”);case “4”:alert(“four”);case “5”:alert(“five”);default:alert(“none”);运行以上程序,在提示对话框中输入“4”,依次弹出的对话框将输出:
A: four,none
B: four,five,none
C: five
D: five,none
A: four,none
B: four,five,none
C: five
D: five,none
B
举一反三
- 以下JavaScript程序[br][/br] var x=prompt(“请输入1-5的数字!”,“”);[br][/br] switch (x) case “1”:alert(“one”);[br][/br] case “2”:alert(“two”); case “3”:alert(“three”); case “4”:alert(“four”); case “5”:alert(“five”);[br][/br] default:alert(“none”);[br][/br]运行以上程序,在提示对话框中输入“4”,依次弹出的对话框将输出: ( )。 A: four,none B: four,five,none C: five D: five,none
- 现有JavaScript程序[br][/br]var x=prompt(“请输入1-5的数字!”,“”);[br][/br]switch (x){[br][/br]case “1”:alert(“one”);break[br][/br]case “2”:alert(“two”);break case “3”:alert(“three”);break case “4”:alert(“four”);break case “5”:alert(“five”);break default: alert(“none”); }[br][/br]运行以上程序,在提示对话框中输入“4”,弹出的对话框将输出: ( ) A: fou B: four,five,none C: five D: five,none
- 【单选题】var num=25;switch(num>;20){case "yes":alert("幸福");break;case 10:alert("快乐");break;case true:alert("健康");break;default:alert("判断不了")}运行上面的程序输出结果是什么? A: 幸福 B: 快乐 C: 健康 D: 判断不了
- 下列程序的输出结果是( )a=1;switch a case 0&1 disp('one') case {1,2} disp('two') case 3 disp('three') otherwise disp('four')end。 A: four B: three C: two D: one
- 下列程序的输出结果是( )a=1;switch a case 01 disp('one') case {1,2} disp('two') case 3 disp('three') otherwise disp('four')end A: one B: two C: three D: four
内容
- 0
下列程序中alert按顺序分别弹出()()()var a =10; function test(){ a=100; alert(a); alert(this.a);var a;alert(a);} test();
- 1
阅读以下代码,请分析出结果:alert(Math.max(1,3,4,'10')); alert(Math.max(1,3,4,'10abc')); alert(Math.max(1,3,4,NaN)); alert(Math.max(1,3,4,undefined)); 依次弹出提示对话框显示为( )
- 2
以下JavaScript代码中,alert显示的值不为undefined的是() A: varx; alert(x+1); B: varx=newArray(); alert(x[-1]); C: fun(); function fun(x){alert(x);} D: functionfun(){} x=fun(); alert(x);
- 3
程序段 int x=3,a=1;switch(x) {case 4: a++;case 3: a++;case 2: a++;case 1: a++;} printf ("%d",a);的输出结果是()
- 4
写出下面代码的运行结果。var a, b;(function() {alert(a);alert(b);var a = b = 3;alert(a);alert(b);})();alert(a);alert(b);