什么是 JavaScript 中的 if 语句?


if 语句是基本控制语句,它允许 JavaScript 根据条件判断和执行语句。 

语法

基本 if 语句的语法如下 −

if(expression){
   Statement(s)to be executed if expression is true
}

此处会计算 JavaScript 表达式。如果结果值为 true,则会执行给定语句。如果表达式的值为 false,则不会执行任何语句。在做出判断时,你常常会用到比较运算符。

示例

你可以试运行以下示例来学习如何在 JavaScript 中使用 if 语句 −

演示

<html>
   <body>
      <script>
         var age = 25;
         if( age > 18 ){
            document.write("Eligible to vote!");
         }
      </script>
      <p>Set the variable to different value and then try...</p>
   </body>
</html>

更新日期: 2020 年 6 月 13 日

226 次浏览

开启你的 事业

完成课程获取认证

立即开始
广告