js得到规范的时间格式函数,并调用
1.js得到规范的时间格式函数
date.prototype.format = function(fmt) {
var o = {
"m+" : this.getmonth()+1, //月份
"d+" : this.getdate(), //日
"h+" : this.gethours(), //小时
"m+" : this.getminutes(), //分
"s+" : this.getseconds(), //秒
"q+" : math.floor((this.getmonth()+3)/3), //季度
"s" : this.getmilliseconds() //毫秒
};
if(/(y+)/.test(fmt)) {
fmt=fmt.replace(regexp.$1, (this.getfullyear()+"").substr(4 - regexp.$1.length));
}
for(var k in o) {
if(new regexp("("+ k +")").test(fmt)){
fmt = fmt.replace(regexp.$1, (regexp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));
}
}
return fmt;
}
2.调用时间函数
nowdate=now.format("yyyy-mm-dd hh:mm:ss");
上一篇: 浅谈企业网站建设中忽略的因素以及一些误区
下一篇: 3dmax怎么建模软管模型?