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


JavaScript Date getDate()用法及代码示例


下面是Date 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

date.getDate()方法用于从给定的Date对象获取一个月的日期。

用法:

DateObj.getDate()

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

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



注意:DateObj是使用Date()构造函数创建的有效Date对象,我们要从中获取日期。

上述方法的更多代码如下:

范例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

支持的浏览器:下面列出了JavaScript Date getDate()方法支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • Safari




相关用法


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