js/jq基础(日常整理记录)-1-纯js格式化时间
Posted 小风微灵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js/jq基础(日常整理记录)-1-纯js格式化时间相关的知识,希望对你有一定的参考价值。
一、纯js格式化时间
之前记录了一些,工作中发现的比较常用的使用,就记录一下。
由于很基础,就直接贴出来了,不做分析了。
改造一下Date的原型
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 now = new Date(); var nowStr = now.format("yyyy-MM-dd hh:mm:ss"); //使用方法2: var testDate = new Date(); var testStr = testDate.format("YYYY年MM月dd日hh小时mm分ss秒"); alert(testStr); //示例: console.log(new Date().format("yyyy年MM月dd日")); console.log(new Date().format("MM/dd/yyyy")); console.log(new Date().format("yyyyMMdd")); console.log(new Date().format("yyyy-MM-dd hh:mm:ss"));
看看执行的结果吧。
还是蛮好用的吧,把这段简短的js代码放置到公共的js文件中,以后直接使用就可以啦,就不用自己去转化了哈。
以上是关于js/jq基础(日常整理记录)-1-纯js格式化时间的主要内容,如果未能解决你的问题,请参考以下文章
前端样式css学习记录(混合记录js/jq+html+bootstrap)
谁有 js,jq,等等方法 动态获取 天气预报?只要对我有帮助的
jQuery框架使用,jq选择器,jq操作页面内容, jq操作类名,jq操作全局属性,jq获取盒子信息,jq获取位置信息,js/jq页面加载完毕事件,jq事件