switch/case sta...LOGIN

switch/case statement

switch/case statement

When making a large number of selection judgments, if you still use the if/else structure, the code may become very complicated. It’s messy, so we use the switch/case structure:

switch(k)
{
case k1:
  执行代码块 1 ;
  break;
case k2:
  执行代码块 2 ;
  break;
default:
  默认执行(k 值没有在 case 中找到匹配时);
}

Syntax description:

Switch must be assigned an initial value, and the value matches each case value. Satisfies all statements after executing the case, and uses the break statement to prevent the next case from running. If all case values ​​do not match, the statement after default is executed.

Assuming that students' test scores are evaluated on a 10-point full-score system, we grade the scores according to each grade and make different evaluations based on the grade of the scores.

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>switch</title>
<script type="text/JavaScript">
var myweek =1;//myweek表示星期几变量
switch(myweek)
{
 case 1:
 case 2:
 document.write("学习理念知识");
 break;
 case 3:
 case 4:
 document.write("到企业实践");
 break;
 case 5:
 document.write("总结经验");
 break;
 case 6:
 case 7:
 document.write("周六、日休息和娱乐");
 break;
 default:
 window.alert('输入有误');
}
</script>
</head>
<body>
</body>
</html>
rrree


Next Section
<!DOCTYPE html> <html> <body> <p>点击下面的按钮来显示今天是周几:</p> <button onclick="myFunction()">点击这里</button> <p id="demo"></p> <script> function myFunction() { var x; var d=new Date().getDay(); switch (d) { case 0: x="Today it's Sunday"; break; case 1: x="Today it's Monday"; break; case 2: x="Today it's Tuesday"; break; case 3: x="Today it's Wednesday"; break; case 4: x="Today it's Thursday"; break; case 5: x="Today it's Friday"; break; case 6: x="Today it's Saturday"; break; } document.getElementById("demo").innerHTML=x; } </script> </body> </html>
submitReset Code
ChapterCourseware