-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12(switch判断).html
60 lines (51 loc) · 1.17 KB
/
12(switch判断).html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>这是鱼爸爸的网址</title>
<!--当判断某种范围的时候最好用if语句
当判断单个值时候用switch-->
<script type="text/javascript">
// switch(a){
// case a:
// document.write("");
// break
// }
// var name = "小明";
// switch (name){
// case "小明":
// document.write("<h1>1号厅</h1>");
// break;
// case "小红":
// document.write("<h1>2号厅</h1>");
// break;
// case "小王":
// document.write("<h1>3号厅</h1>");
// break;
// case "小周":
// document.write("<h1>4号厅</h1>");
// break;
// default:
// document.write("结束");
// }
// case比较类型,prompt都是返回字符串类型
// 解决方法:prompt("请输入数字:")*1.case 1 = case "1"
var a = 1;
switch (a){
case 1:
document.write("风雨<br />");
case 2:
document.write("鱼爸爸<br />");
case 3:
document.write("泽泽<br />");
break;
case 4:
document.write("贱贱<br />");
default:
document.write("输入错误")
}
</script>
</head>
<body>
</body>
</html>