我还以为我活了一万多天呢
//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);