• js 时间戳格式化


    /*
     * JS 时间格式化
     * type 时间格式(yyyy-mm-dd hh:ii:ss / mm-dd / hh:ii / yyyy-mm)可自定义
     * date 毫秒时间戳(1554954127000)
     * 使用:timeFormat('yyyy-mm-dd hh:ii:ss',1554954127000)
     * 说明:紧支持毫秒级时间戳,传统秒级 Unix 时间戳需要乘以 1000 转换为毫秒
     */
    function timeFormat(type,date){
    	var date = new Date(date);
    	var o = {   
    		"m+" : date.getMonth()+1,	//月份   
    		"d+" : date.getDate(),		//日   
    		"h+" : date.getHours(),		//小时   
    		"i+" : date.getMinutes(),	//分   
    		"s+" : date.getSeconds(),	//秒   
    	};   
    	if(/(y+)/.test(type)){
    		type=type.replace(RegExp.$1,(date.getFullYear()+"").substr(4-RegExp.$1.length)); 
    	};    
    	for(var k in o){
    		if(new RegExp("("+ k +")").test(type)){
    			type=type.replace(RegExp.$1,(RegExp.$1.length==1)?(o[k]):(("00"+ o[k]).substr((""+o[k]).length))); 
    		}; 
    	}
    	return type; 
    }
  • 相关阅读:
    简述对vuex的理解
    Vuex总结--是什么?有什么?怎么用?
    Vuex总结
    在vue中,methods和computed这两个方法的区别。
    关于vuex
    生命周期的钩子函数
    vuex 的理解
    Linux 安装kubectl
    python装饰器
    MySQL事务
  • 原文地址:https://www.cnblogs.com/eunuch/p/11758602.html
Copyright © 2020-2023  润新知