返回时间的秒数。
dateObject.getSeconds();
dateObject 的秒字段,以本地时间显示。返回值是 0 ~ 59 之间的一个整数。
var DATE = new Date(); console.log( DATE.getSeconds() );
>>> 14