js把时间戳只转换为“时“和”分”
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js把时间戳只转换为“时“和”分”相关的知识,希望对你有一定的参考价值。
比如把这个时间戳:1491386842
(它是2017-4-5 18:07:22)
转换为:18:07
javascript时间戳转日期时间,支持自定义输出日期格式,可以显示年,月,周,日,时,分,秒多种形式的日期和时间。
var date = formatDate(new Date(1491386842*1000),"HH:ii");console.log(date)
//18:07
一行js代码实现时间戳转时间格式
S = 1491386842,
T = new Date(1E3 * S),
Format = function(Q)return Q < 10 ? '0' + Q : Q,
Result = Format(T.getHours()) + ':' + Format(T.getMinutes());
console.log(Result)本回答被提问者和网友采纳 参考技术B new Date().toTimeString().split(' ')[0]
js把时间戳转换为普通日期格式
第一种
function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\\d{1,2}$/,\' \'); } alert(getLocalTime(1293072805));
function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().substr(0,17)} alert(getLocalTime(1293072805));
第二种
function formatDate(now) {
var year=now.getFullYear();
var month=now.getMonth()+1;
var date=now.getDate();
var hour=now.getHours();
var minute=now.getMinutes();
var second=now.getSeconds();
return year+"-"+month+"-"+date+" "+hour+":"+minute+":"+second;
}
var d=new Date(1230999938);
alert(formatDate(d));
以上是关于js把时间戳只转换为“时“和”分”的主要内容,如果未能解决你的问题,请参考以下文章