获取日期对象

日期对象

var oDate = new Date();

    获取年:oDate.getFullYear();

    获取月:oDate.getMonth(); (从0开始)+1

    获取日:oDate.getDate();

    获取时:oDate.getHours();

    获取分:oDate.getMinutes();

    获取秒:oDate.getSeconds();

你可能感兴趣的:(获取日期对象)