Javascript Date getSeconds() 方法

返回 Javascript Date 对象


定义

getSeconds() 方法可返回时间的秒。返回值是 0 ~ 59 之间的一个整数。

语法

该方法的语法如下:

Date.getSeconds()

参数

返回值

根据当地时间返回指定日期的秒数。返回值是 0 ~ 59 之间的一个整数。

浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

所有主要浏览器都支持 getSeconds() 方法

示例

<html>
   <head>
      <title>JavaScript getSeconds Method</title>
   </head>
   
   <body>   
      <script type = "text/javascript">
         var dt = new Date( "December 25, 1995 23:15:20" );
         document.write("getSeconds() : " + dt.getSeconds() ); 
      </script>      
   </body>
</html>

输出结果:

getSeconds() : 20 

尝试一下


返回 Javascript Date 对象

查看笔记

扫码一下
查看教程更方便