JS获取日期进而转换日期为YY-MM--DD格式
程序员文章站
2024-03-17 23:58:46
...
格式化日期,获取到时间戳之后,想单独获取年月日,同时用“-”连接。
YY-MM–DD
因为我遇到做h5的时候,在不同型号的手机上面,用原生的方法获取时间戳,出现的格式是不一样的,用时间的toLocaleDateString方法转换获取年月日,在不同的型号的手机上面显示是不一样的,此时需要格式化日期。
var a = new Date(); // Wed Jan 23 2019 18:02:25 GMT+0800 (中国标准时间)
// 格式化时间 YY-MM--DD
function getFormatDate() {
var date = new Date();
var seperator = "-";
var year = date.getFullYear();
var month = date.getMonth() + 1;
var nowDate = date.getDate();
if(month >=1 && month <=9) {
month = "0" + month;
}
if(nowDate >=0 && nowDate <=9) {
nowDate = "0" + nowDate;
}
var newDate = year + seperator + month + seperator + nowDate;
return newDate;
}
getFormatDate(a); // "2019-01-23"