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


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


date.getDate()是JavaScript中的内置函数,用于从给定的Date对象获取一个月的日期。

用法:

DateObj.getDate()

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


参数:此函数不带任何参数。它只是与我们要从中获取月份日期的Date对象一起使用。

返回值:它返回给定日期的月份的日期。月份的日期是一个从1到31的整数。

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

<script> 
  // Here a date has been assigned 
  // while creating Date object 
  var dateobj = new Date('October 13, 1996 05:35:32'); 
  
  // date of the month from above Date Object is 
  // being extracted using getDate() 
  var B = dateobj.getDate(); 
  
  // Printing date of the month 
  document.write(B); 
</script>

输出:

13

错误和异常:

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

    输出:

    NaN
  • 示例2:如果未提供月份日期,则默认情况下返回1。这是例外情况。
    <script> 
      // Here a date has been assigned 
      // while creating Date object 
      var dateobj = new Date('October 1996 05:35:32'); 
      
      // date of the month from above date object 
      // is extracted using getDate() 
      var B = dateobj.getDate(); 
      
      // Printing date of the month 
      document.write(B); 
    </script>

    输出:

    1
  • 示例3:如果没有为Date构造函数提供任何参数,则该函数返回该月的当前日期。
    <script> 
      // Creating Date Object 
      var dateobj = new Date(); 
      
      // date of the month from above object 
      // is being extracted using getDate(). 
      var B = dateobj.getDate(); 
       
      // Printing current date 
      document.write(B); 
    </script>

    输出:

    21

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

<script> 
  // Creating Date Object 
  var dateobj = new Date(); 
  
  // date of the month from above object 
  // is being extracted using getDate(). 
  var B = dateobj.getDate(); 
  
  // Printing current date. 
  document.log(B); 
</script>

输出:

21

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

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


相关用法


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