当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Javascript date.getDay()用法及代码示例


date.getDay()是JavaScript中的内置函数,用于从给定的Date对象中获取星期几。

用法:

DateObj.getDay()

在以上语法中,DateObj是使用Date()构造函数创建的有效Date对象,我们希望从该构造函数中获取日期。


参数:此函数不带任何参数。它仅与要从中获取星期几的Date对象一起使用。

返回值:它返回给定日期的星期几。星期几将以整数值的形式返回,范围从0到6表示星期日为0,星期一为1,依此类推,直到星期六为6。

以下示例程序旨在说明getDay()方法:

  • 例:
    <script> 
      // Here a date has been assigned  
      // while creating Date object 
      var A = new Date('October 15, 1996 05:35:32'); 
      
      // day of the week from above Date Object is 
      // being extracted using getDay() 
      var B = A.getDay(); 
      
      // Printing day of the week 
      document.write(B); 
    </script>

    输出:

    2

错误和异常:

  • 范例1:该月的日期必须在1到31之间,因为该月中没有一个日期大于31,这就是它返回NaN的原因,即不是一个数字,因为该月的日期不存在。
    <script> 
      // Here a date has been assigned  
      // while creating Date object 
      var A = new Date('October 35, 1996 05:35:32'); 
      
      // day of the week from above Date Object 
      // is being extracted using getDay() 
      var B = A.getDay(); 
      
      // Printing day of the week. 
      document.write(B); 
    </script>

    输出:

    NaN
  • 范例2:如果未提供月份日期,则默认情况下,该函数会将其视为月份的第一个日期,因此它将返回星期几。这是一个例外情况。
    <script> 
      // Here a date has been assigned  
      // while creating Date object 
      var A = new Date('October 1996 05:35:32'); 
      
      var B = A.getDay(); 
      
      // Printing day 
      document.write(B); 
    </script>

    输出:

    2

    在这里它返回2表示星期二,即在1996年10月第一周会有星期二。

  • 范例3:如果没有给出任何参数,则返回当前星期几。
    <script> 
      // Creating Date Object 
      var A = new Date(); 
      
      // day of the week from above object 
      // is being extracted using getDay(). 
      var B = A.getDay() 
      
      // Printing day of the week. 
      document.write(B); 
    </script>

    输出:

    5

应用程序:它具有许多应用程序,例如获取星期几。下面的程序显示了此函数的应用之一。它给出了当前日期。

  • 例:
    <script> 
      // Creating Date Object 
      var A = new Date(); 
      
      // day of the week from above object 
      // is being extracted using getDay(). 
      var B = A.getDay() 
      
      // Printing day of the week. 
      document.write(B); 
    </script>

    输出:

    5

支持的浏览器:JavaScript date.getDay()函数支持的浏览器如下:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器


相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript | date.getDay() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。