<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> </head> <body> <script> var month=prompt('请输入第一个月份'); var r=''; switch (month){ case '1': case '2': case '3': r='第1个季度'; break; case '4': case '5': case '6': r='第2个季度'; break; case '7': case '8': case '9': r='第3个季度'; break; case '10': case '11': case '12': r='第4个季度'; break; default : r='不符合条件'; } alert(r) </script> </body> </html> //if-else更适合于条件范围的判断,而switch-case只是用于条件可能性的判断
switch-case练习
最新推荐文章于 2021-11-03 19:06:26 发布