永发信息网

js中怎样定义SimpleDateFormat

答案:1  悬赏:60  手机版
解决时间 2021-03-05 13:25
  • 提问者网友:凉末
  • 2021-03-04 15:11
js中怎样定义SimpleDateFormat
最佳答案
  • 五星知识达人网友:duile
  • 2021-03-04 16:24
Date.prototype.format = function(format)<br>    {<br>    var o = {<br>    &quot;M+&quot; : this.getMonth()+1, //month<br>    &quot;d+&quot; : this.getDate(),    //day<br>    &quot;h+&quot; : this.getHours(),   //hour<br>    &quot;m+&quot; : this.getMinutes(), //minute<br>    &quot;s+&quot; : this.getSeconds(), //second<br>    &quot;q+&quot; : Math.floor((this.getMonth()+3)/3),  //quarter<br>    &quot;S&quot; : this.getMilliseconds() //millisecond<br>    }<br>    if(/(y+)/.test(format)) format=format.replace(RegExp.$1,<br>    (this.getFullYear()+&quot;&quot;).substr(4 - RegExp.$1.length));<br>    for(var k in o)if(new RegExp(&quot;(&quot;+ k +&quot;)&quot;).test(format))<br>    format = format.replace(RegExp.$1,<br>    RegExp.$1.length==1 ? o[k] :<br>    (&quot;00&quot;+ o[k]).substr((&quot;&quot;+ o[k]).length));<br>    return format;<br>    }<br>    alert(new Date().format('yyyy-MM-dd hh:mm:ss'));
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯