JavaScript – getSeconds() 方法
描述
Javascript 日期 getSeconds() 方法返回指定日期本地时间下的秒数。由 getSeconds() 返回的值为介于 0 和 59 之间的整数。
语法
语法如下 −
Date.getSeconds()
返回值
返回指定日期本地时间下的秒数。
示例
尝试以下示例。
<html>
<head>
<title>JavaScript getSeconds 方法</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