JavaScript语法 if else判断 while循环 for循环

JavaScript if else语法

if 语句指定了在条件为 true 时执行的代码块:

if (condition) {
    如果 condition 为 true 执行该代码块
}
else 语句指定在条件为 false 时执行的代码块:

if (condition) {
    如果 condition 为 true 执行该代码块
} else {
    如果 condition 为 false 执行该代码块
}
else if 语句在第一个条件为false时指定了新的条件:

if (condition1) {
    如果 condition1 为 true 执行该代码块
} else if (condition2) {
    如果 condition1 为 false 且 condition2 为 true 执行该代码块
} else {
    如果 condition1 为 false 且 condition2 为 false 执行该代码块
}


实例
如果时间小于 20:00, 生成一个 "Good day" 问候,否则输出 "Good evening":

var time = new Date().getHours();
if (time < 20) {
    greeting = "Good day";
} else {
    greeting = "Good evening";
}
问候语的输出结果为:

var d=new Date(); var time=d.getHours(); if (time<20) { document.write("Good day"); } else { document.write("Good evening"); 


https://www.runoob.com/jsref/jsref-if.html

您可能还喜欢...

发表回复