获取yyyy-mm-dd hh:ii:ss形式的日期时间
获取yyyy-mm-dd hh:ii:ss形式的日期时间
function getFormatDate(){
//将日期转换为本地格式。
var strDate=new Date().toLocaleString();
//将字符串形式的日期进行格式化。
return strDate.replace(/[年]|[月]/g,"-").replace(/[日]/g,"");
}
//将日期转换为本地格式。
var strDate=new Date().toLocaleString();
//将字符串形式的日期进行格式化。
return strDate.replace(/[年]|[月]/g,"-").replace(/[日]/g,"");
}