发布网友 发布时间:2022-04-23 23:16
共4个回答
热心网友 时间:2022-05-01 19:59
//Time
function showLocale(objD)
{
var str,colorhead,colorfoot;
var yy = objD.getYear();
if(yy<1900) yy = yy+1900;
var MM = objD.getMonth()+1;
if(MM<10) MM = '0' + MM;
var dd = objD.getDate();
if(dd<10) dd = '0' + dd;
var hh = objD.getHours();
if(hh<10) hh = '0' + hh;
var mm = objD.getMinutes();
if(mm<10) mm = '0' + mm;
var ss = objD.getSeconds();
if(ss<10) ss = '0' + ss;
if (hh <= 11) var amOrPm =" am";
if (hh > 11) var amOrPm =" pm";
if (hh > 12) hh = hh - 12;
if (hh == 0) hh = 12;
var ww = objD.getDay();
if (ww==0) ww="星期日";
if (ww==1) ww="星期一";
if (ww==2) ww="星期二";
if (ww==3) ww="星期三";
if (ww==4) ww="星期四";
if (ww==5) ww="星期五";
if (ww==6) ww="星期六";
str = yy + "-" + MM + "-" + dd + "- " + ww + " " + hh + ":" + mm + ":" + ss + amOrPm;
return(str);
}
function tick()
{
var today;
today = new Date();
document.getElementById("time").innerHTML = showLocale(today);
window.setTimeout("tick()", 1000);
}
tick();
<span id="time"></span>
热心网友 时间:2022-05-01 21:17
仅针对这个问题来说,不需要那么大量的代码即可完成
方案1(适用于中国标准时间):
var date = new Date(+new Date()+8*3600*1000).toISOString().replace(/T/g,' ').replace(/\.[\d]{3}Z/,'')方案2(只用于题目中所述的格式转换):
var date = new Date().toLocaleString().replace(/[年月]/g,'-').replace(/[日上下午]/g,'');方案3(最准确但最麻烦,不推荐):
热心网友 时间:2022-05-01 22:52
new Date(micro-second).format('YYYY-MM-dd hh:mm:ss')
热心网友 时间:2022-05-02 00:43
通过拼装返回.百度搜索[format_date.js]