元素模板为您解答:
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>");
})