js获取浏览器当前时间

来源:互联网 发布:国债逆回购 知乎 编辑:程序博客网 时间:2024/06/05 11:51
function getNowFormatDate() {
var date =new Date();
var seperator1 ="-";
var seperator2 =":";

var month =date.getMonth() +1;
var strDate =date.getDate();
var strHours=date.getHours();
var strMinutes=date.getUTCMinutes();
var strSeconds=date.getSeconds();

if (month >=1 && month <=9) {
month = "0" +month;
}
if (strDate >=0 && strDate <=9) {
strDate = "0" +strDate;
}
if (strHours >=0 && strHours <=9) {
strHours = "0" +strHours;
}
if (strMinutes >=0 && strMinutes <=9) {
strMinutes = "0" + strMinutes;
}
if (strSeconds >=0 && strSeconds <=9) {
strSeconds= "0" +strSeconds;
}
var currentdate =date.getFullYear() +seperator1 + month +seperator1 + strDate +
" " + strHours +seperator2 + strMinutes +
seperator2 + strSeconds;
return currentdate;
}
console.log(getNowFormatDate());
原创粉丝点击