国产精品7777777,国产亚洲第一页,亚洲激情网,三级黄色在线免费观看,91男生福利,91男生福利,亚洲天堂福利

龍巖易富通網(wǎng)絡科技有限公司

龍巖小程序開發(fā),龍巖分銷系統(tǒng)

js在當前日期添加天、周、月、年

2024.12.11 | 1488閱讀 | 0條評論 | javascript


//創(chuàng)建date

var nowDate = new Date();


//添加天數(shù)

nowDate.setDate(nowDate.getDate() + 1);


//添加周 添加周用添加天的方式,來添加七天,即為一周

nowDate.setDate(nowDate.getDate() + 7);


//添加月數(shù)

nowDate.setMonth(nowDate.getMonth() + 1);


//添加年數(shù)

nowDate.setYear(nowDate.getFullYear() + 1);



打印格式為年月日時分秒

const year = nowDate.getFullYear();

const month = (nowDate.getMonth() + 1).toString().padStart(2, '0');

const day = nowDate.getDate().toString().padStart(2, '0');

const hours = nowDate.getHours().toString().padStart(2, '0');

const minutes = nowDate.getMinutes().toString().padStart(2, '0');

const seconds = nowDate.getSeconds().toString().padStart(2, '0');

console.log(`${year}-${month}-${day} ${hours}:${minutes}:${seconds}`);


贊 (

發(fā)表評論

陇南市| 高雄市| 大邑县| 松阳县| 杭锦后旗| 平武县| 金乡县| 汝阳县| 荔波县| 洞头县| 福泉市| 和平区| 武宣县| 崇仁县| 天长市| 本溪| 额敏县| 舒城县| 伊吾县| 大邑县| 崇阳县| 吉木萨尔县| 阜南县| 保靖县| 石门县| 平江县| 新宁县| 广水市| 肥乡县| 都昌县| 祁阳县| 赤峰市| 青川县| 林甸县| 原阳县| 长岭县| 顺平县| 湘阴县| 忻城县| 剑阁县| 禹城市|