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