/**
* 获取当前时间
* @param isTime true:显示日期和时间,如:2018-09-20 13:25:12;false:显示日期,如:2018-09-20。
* @returns {string}
*/
function getCurentTime(isTime=true) {
var now = new Date();
var clock = "";
var year = now.getFullYear(); // 年
clock += year + "-";
var month = now.getMonth() + 1; // 月
if (month < 10) {
clock += "0";
}
clock += month + "-";
var day = now.getDate(); // 日
if (day < 10) {
clock += "0";
}
if (isTime == true) {
clock += day + " ";
var hh = now.getHours(); // 时
if (hh < 10) {
clock += "0";
}
clock += hh + ":";
var mm = now.getMinutes(); // 分
if (mm < 10) {
clock += '0';
}
clock += mm + ":";
var ss = now.getSeconds(); // 秒
if (ss < 10) {
clock += '0';
}
clock += ss;
}
if (isTime == false) {
clock += day;
}
return clock;
}