扫码一下
查看教程更方便
getSeconds() 方法可返回时间的秒。返回值是 0 ~ 59 之间的一个整数。
该方法的语法如下:
Date.getSeconds()
无
根据当地时间返回指定日期的秒数。返回值是 0 ~ 59 之间的一个整数。
所有主要浏览器都支持 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