传入时间戳后,时间节点转换 多少分钟之前,多少小时之前,多少天之前, xx 年 xx 月 xx 日 xx:xx
无
<div class="">请输入13位时间戳</div>
<input id="time" type="text" class="" maxlength="13">
<button class="" onclick="timeNodeConversion()">确定</button>
<div class="">结果</div>
<input id="reast" type="text" class="">
function timeNodeConversion() {
var time = document.getElementById("time").value;
if (time.length <13) {
alert("请输入13位时间戳")
return
};
$timeNodeConversion.timeago(time, function (res) {
document.getElementById("reast").value = res;
})
}
输入13位时间戳,输入其他位数的时间戳将导致无法实现