JavaScript 笔记 5 - 条件语句
JavaScript 条件语句
条件语句
条件语句用于基于不同的条件来执行不同的动作。
通常在写代码时,您总是需要为不同的决定来执行不同的动作。您可以在代码中使用条件语句来完成该任务。
在 JavaScript 中,我们可使用以下条件语句:
- if 语句 - 只有当指定条件为 true 时,使用该语句来执行代码
- if...else 语句 - 当条件为 true 时执行代码,当条件为 false 时执行其他代码
- if...else if....else 语句- 使用该语句来选择多个代码块之一来执行
- switch 语句 - 使用该语句来选择多个代码块之一来执行
1. if语句 if (condition) { 当条件为 true 时执行的代码 } 2. if...else语句 if (condition) { 当条件为 true 时执行的代码 } else { 当条件不为 true 时执行的代码 } 3. if...else if...else语句 if (condition1) { 当条件 1 为 true 时执行的代码 } else if (condition2) { 当条件 2 为 true 时执行的代码 } else { 当条件 1 和 条件 2 都不为 true 时执行的代码 } 4. switch语句 switch(n) { case 1: 执行代码块 1 break; case 2: 执行代码块 2 break; default: n 与 case 1 和 case 2 不同时执行的代码 }
switch语句中的关键字
break
使用 break 来阻止代码自动地向下一个 case 运行。
default
使用 default 关键词来规定匹配不存在时做的事情
var day=new Date().getDay(); switch (day) { case 6: x="Today it's Saturday"; break; case 0: x="Today it's Sunday"; break; default: x="Looking forward to the Weekend"; } 运行结果: Today it's Saturday
相关推荐
cakecc00 2020-10-09
yawei 2020-10-09
zhaowj00 2020-07-26
PM实验室 2020-06-16
fly00love 2020-05-16
暗夜之城 2020-04-07
cmsmdn 2020-02-16
FCLAMP 2020-02-14
sunnyxuebuhui 2020-02-12
yogoma 2020-01-13
fengjing81 2020-01-10
singer 2019-12-20
坚持是一种品质 2019-12-07
ericasadun 2019-08-16
KilluaZoldyck 2019-10-23
pbyanglove 2010-06-22
苗疆三刀的随手记 2019-07-01
wolaoreme 2016-09-09
Ykbug 2010-11-25