包含了时间戳转换时间和时间转换为时间戳的功能。
function ffo() { var a = new Date(); // console.log(a); // console.log(a.getDay()); //getDay() 方法可返回一周(0~6)的某一天的数字。 注意: 星期天为 0, 星期一为 1, 以此类推。 var b = new Date("2019-2-21 14:19:00"); // console.log(b.valueOf()/1000); //返回是2019-2-21 14:19:00的时间戳 console.log(b.toLocaleDateString().replace(/\//g, "-")+ ‘时间:‘+b.toTimeString());//时间戳转换为时间 var newtime = b.getTime(); var time = a.getTime(); var t = Math.floor((newtime-time)/1000); var t2 =Math.floor(t/(60*60)); var t3 = t%(60*60); var t4 = Math.floor(t3/60); var t5 = t3%60; var ttt =t2+"时"+t4+"分"+t5+"秒"; box.innerHTML = ttt } setInterval(ffo,1000)
原文地址:https://www.cnblogs.com/1115changhao/p/10412715.html
时间: 2024-10-06 06:37:09