代码描述:js格式化时间日期。js格式化时间日期源码实例
时间日期在默认状态下往往不够规整,会影响整体的美观度,所以通常情况下要对时间日期进行格式化,下面就分享一段这样的代码实例,希望能够给需要的朋友带来一定的帮助。 代码实例如下:
<script> Date.prototype.format=function(format){ var o={ "M+" : this.getMonth()+1, //month "d+" : this.getDate(), //day "h+" : this.getHours(), //hour "m+" : this.getMinutes(), //minute "s+" : this.getSeconds(), //second "q+" : Math.floor((this.getMonth()+3)/3), //quarter "S" : this.getMilliseconds() //millisecond }; if(/(y+)/.test(format)) { format=format.replace(RegExp.$1,(this.getFullYear()+"").substr(4- RegExp.$1.length)); } for(var k in o) { if(new RegExp("("+ k +")").test(format)) { format=format.replace(RegExp.$1,RegExp.$1.length==1?o[k]:("00"+o[k]).substr((""+o[k]).length)); } } return format; }; var dt=new Date(); var nowDate=dt.format("yyyy-MM-dd hh:mm:ss"); console.log(nowDate) </script>
请绑定手机号,在继续操作
注意:只有绑定手机以后,才可使用网站全部功能