欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > 其他教程 >
其他教程

[JQ教程]把10位或13位时间戳 转化为时间

(元素模板) / 2021-06-04 17:44
如何把 10位或者13位的时间 使用 JQ 来转换为标准时间呢?
元素模板为您解答:

HTML代码
<div class="time">
    <div data="1515640111">时间戳:1515640111</div>
</div>


JQ代码
function DateToTime(unixTime,type="Y-M-D H:i:s"){
    var date = new Date(unixTime * 1000);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
    var datetime = "";
    datetime += date.getFullYear() + type.substring(1,2);
    datetime += (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + type.substring(3,4);
    datetime += (date.getDate() < 10 ? '0'+(date.getDate()) : date.getDate());
    if (type.substring(5,6)) {
        if (type.substring(5,6).charCodeAt() > 255) {
            datetime += type.substring(5,6);
            if (type.substring(7,8)) {
                datetime += " " + (date.getHours() < 10 ? '0'+(date.getHours()) : date.getHours());
                if (type.substring(9,10)) {
                    datetime += type.substring(8,9) + (date.getMinutes() < 10 ? '0'+(date.getMinutes()) : date.getMinutes());
                    if (type.substring(11,12)) {
                        datetime += type.substring(10,11) + (date.getSeconds() < 10 ? '0'+(date.getSeconds()) : date.getSeconds());
                    };
                };
            };
        }else{
            datetime += " " + (date.getHours() < 10 ? '0'+(date.getHours()) : date.getHours());
            if (type.substring(8,9)) {
                datetime += type.substring(7,8) + (date.getMinutes() < 10 ? '0'+(date.getMinutes()) : date.getMinutes());
                if (type.substring(10,11)) {
                    datetime += type.substring(9,10) + (date.getSeconds() < 10 ? '0'+(date.getSeconds()) : date.getSeconds());
                };
            };
        };
    };
    return datetime; 
}
$(function(){
$(".time").append("<div>标准转换:"+DateToTime("1515640111")+"</div>");
$(".time").append("<div>Y-m-d:"+DateToTime("1515640111","Y-m-d")+"</div>");
$(".time").append("<div>Y-m-d H:i:s:"+DateToTime("1515640111","Y-m-d H:i:s")+"</div>");
$(".time").append("<div>Y/m/d:"+DateToTime("1515640111","Y/m/d")+"</div>");
$(".time").append("<div>Y/m/d H:i:s:"+DateToTime("1515640111","Y/m/d H:i:s")+"</div>");
$(".time").append("<div>Y年m月d日:"+DateToTime("1515640111","Y年m月d日")+"</div>");
$(".time").append("<div>Y年m月d日 H:i:s:"+DateToTime("1515640111","Y年m月d日 H:i:s")+"</div>");
})
Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com