计算活了多少天
Posted 做人胃口要大,梦想也要大
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算活了多少天相关的知识,希望对你有一定的参考价值。
我还以为我活了一万多天呢
//3、计算从出生到现在你总共活了多少天? Math.ceil()
var chusheng = new Date("1994-08-24"); //得到出生日期
var today = new Date(); //得到当前时间
document.write(chusheng+"<br/>");
document.write(today);
var result = today - chusheng; //相减得到毫秒数,
var res = result/1000/60/60/24; //毫秒转成天数
//var tianshu = Math.ceil(res); //四舍五入后的天数
document.write("<br/>"+res);
以上是关于计算活了多少天的主要内容,如果未能解决你的问题,请参考以下文章