获取当前的日期时间 格式“yyyy-MM-dd HH:MM:SS”:
var date = new Date();
var seperator1 = "-";
var seperator2 = ":";
var month = date.getMonth() + 1;
var strDate = date.getDate();
if (month >= 1 && month <= 9) {
month = "0" + month;
}
if (strDate >= 0 && strDate <= 9) {
strDate = "0" + strDate;
}
var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
+ " " + date.getHours() + seperator2 + date.getMinutes()
+ seperator2 + date.getSeconds();
return currentdate;
}
获取当前的日期时间 格式“yyyy-MM-dd”:
var date = new Date();
var month = date.getMonth() + 1;
var strDate = date.getDate();
var day;
if (month >= 1 && month <= 9) {
month = "0" + month;
}
if (strDate >= 0 && strDate <= 9) {
strDate = "0" + strDate;
}
if(date.getDay()==0) day = "星期日"
if(date.getDay()==1) day = "星期一"
if(date.getDay()==2) day = "星期二"
if(date.getDay()==3) day = "星期三"
if(date.getDay()==4) day = "星期四"
if(date.getDay()==5) day = "星期五"
if(date.getDay()==6) day = "星期六"
var currentdate = date.getFullYear() + "年" + month + "月" + strDate + "日" +" "+ day;
document.write(currentdate);
js获取当前日期时间
最新推荐文章于 2024-07-18 11:50:26 发布
本文介绍了一种使用JavaScript来格式化日期和时间的方法,包括如何获取当前日期时间,并将其转换为'yyyy-MM-dd HH:mm:ss'和'yyyy年MM月dd日 星期X'这两种格式。
999

被折叠的 条评论
为什么被折叠?



