码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript-if-else

时间:2015-06-01 18:56:28      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:



条件语句用于基于不同的条件来执行不同的动作。
条件语句

通常在写代码时,您总是需要为不同的决定来执行不同的动作。您可以在代码中使用条件语句来完成该任务。

在 JavaScript 中,我们可使用以下条件语句:

    if 语句 - 只有当指定条件为 true 时,使用该语句来执行代码
    if...else 语句 - 当条件为 true 时执行代码,当条件为 false 时执行其他代码
    if...else if....else 语句 - 使用该语句来选择多个代码块之一来执行
    switch 语句 - 使用该语句来选择多个代码块之一来执行

If 语句

只有当指定条件为 true 时,该语句才会执行代码。
语法

if (条件)
  {
  只有当条件为 true 时执行的代码
  }

注意:请使用小写的 if。使用大写字母(IF)会生成 JavaScript 错误!
实例

当时间小于 20:00 时,生成一个“Good day”问候:

if (time<20)
  {
  x="Good day";
  }

x 的结果是:

Good day

亲自试一试

请注意,在这个语法中,没有 ..else..。您已经告诉浏览器只有在指定条件为 true 时才执行代码。
If...else 语句

请使用 if....else 语句在条件为 true 时执行代码,在条件为 false 时执行其他代码。
语法

if (条件)
  {
  当条件为 true 时执行的代码
  }
else
  {
  当条件不为 true 时执行的代码
  }

实例

当时间小于 20:00 时,将得到问候 "Good day",否则将得到问候 "Good evening"。

if (time<20)
  {
  x="Good day";
  }
else
  {
  x="Good evening";
  }

x 的结果是:

Good day

亲自试一试
If...else if...else 语句

使用 if....else if...else 语句来选择多个代码块之一来执行。
语法

if (条件 1)
  {
  当条件 1 为 true 时执行的代码
  }
else if (条件 2)
  {
  当条件 2 为 true 时执行的代码
  }
else
  {
  当条件 1 和 条件 2 都不为 true 时执行的代码
  }

实例

如果时间小于 10:00,则将发送问候 "Good morning",否则如果时间小于 20:00,则发送问候 "Good day",否则发送问候 "Good evening":

if (time<10)
  {
  x="Good morning";
  }
else if (time<20)
  {
  x="Good day";
  }
else
  {
  x="Good evening";
  }

x 的结果是:

Good morning





<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html charset=utf-8"/>

<head>
    <title></title>
</head>
<body>
<p>如果时间早于7:00,会问候“Good Day”.</p>
<button onclick="myFunction()">点击这里</button>
<p id = "demo"></p>
<script type="text/javascript">
    function myFunction()
    {
        var x = "";
        var time = new Date().getHours();
        /*if(time < 7)
        {
            x = "Good Day";
        }
        else
        {
            x = "Your are a lazy guy ";
        }
        document.getElementById("demo").innerHTML=x;
        */
        if(time < 10)
        {
            x = "Good morning";
        }
        else if(time < 20)
        {
            x = "Good Day";
        }
        else
        {
            x = "Good evening";
        }
        document.write(x);
    }
</script>

</body>
</html><!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html charset=utf-8"/>

<head>
    <title></title>
</head>
<body>
<p>如果时间早于7:00,会问候“Good Day”.</p>
<button onclick="myFunction()">点击这里</button>
<p id = "demo"></p>
<script type="text/javascript">
    function myFunction()
    {
        var x = "";
        var time = new Date().getHours();
        /*if(time < 7)
        {
            x = "Good Day";
        }
        else
        {
            x = "Your are a lazy guy ";
        }
        document.getElementById("demo").innerHTML=x;
        */
        if(time < 10)
        {
            x = "Good morning";
        }
        else if(time < 20)
        {
            x = "Good Day";
        }
        else
        {
            x = "Good evening";
        }
        document.write(x);
    }
</script>

</body>
</html>


JavaScript-if-else

标签:

原文地址:http://blog.csdn.net/u012701023/article/details/46313089

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!