欧美一级色视频,簧片在线免费看,美日韩在线,成人观看网站a,亚洲欧美在线一区二区,欧美操穴,欧美综合专区

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

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

js在當(dāng)前日期添加天、周、月、年

2024.12.11 | 1666閱讀 | 0條評(píng)論 | javascript


//創(chuàng)建date

var nowDate = new Date();


//添加天數(shù)

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


//添加周 添加周用添加天的方式,來(lái)添加七天,即為一周

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


//添加月數(shù)

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


//添加年數(shù)

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



打印格式為年月日時(shí)分秒

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ā)表評(píng)論

许昌市| 龙江县| 新野县| 驻马店市| 丰台区| 晋江市| 淳化县| 佛冈县| 灵璧县| 巫山县| 徐水县| 丰宁| 齐齐哈尔市| 保康县| 鹿邑县| 衡东县| 宜兰市| 渑池县| 西充县| 连州市| 石阡县| 延寿县| 宁波市| 杭锦后旗| 旅游| 双牌县| 东丰县| 南宁市| 买车| 南华县| 沧源| 万年县| 广灵县| 巩义市| 梓潼县| 虞城县| 涟水县| 凉城县| 铁岭市| 宜春市| 长春市|