switch语句

Posted huangpeideng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了switch语句相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>switch</title>
<script>
/**
* switch中的语句后面一般都会加上break,否则一个case匹配后不仅会执行当前的语句,
* 还会继续执行后面case的语句。
*
*/
var num = "1"; //比较的是全等,字符创“1”和数字 1 不匹配
switch (num)

case 1:
console.log("一");
break;
case 2:
console.log("二");
break;
case 3:
console.log("三");
break;
default:
console.log("默认");

</script>
</head>
<body>

</body>
</html>

以上是关于switch语句的主要内容,如果未能解决你的问题,请参考以下文章

switch语句 switch语句的相关知识

switch case语句和if的区别

switch语句怎么用啊 具体啊!

switch语句的用法?

c语言中switch可用啥语句替换

如何在switch语句中选择一个值范围