1、描述
JavaScript date getSeconds()
方法根据本地时间返回指定日期中的秒数。getSeconds()
返回的值为0 ~ 59之间的整数。
2、语法
它的语法如下:
date.getSeconds()
3、返回值
根据本地时间返回指定日期中的秒数。
4、使用示例
<html>
<head>
<title>JavaScript getSeconds Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date( "December 11, 2021 22:12:32" );
document.write("getSeconds() : " + dt.getSeconds() );
</script>
</body>
</html>
5、输出
getSeconds() : 32