码迷,mamicode.com
首页 > 其他好文 > 详细

计算一年后的日期

时间:2017-11-12 16:26:22      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:get   head   col   log   type   bsp   span   mon   logs   

<!DOCTYPE html>
<html>
<head>
    <title>日期计算</title>
</head>
<body>
<script type="text/javascript"> var months=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]; var nowDate=new Date(); nowDate.setMonth(nowDate.getMonth()+12); document.write("Date 12 months ahead is "+nowDate.getDate()); document.write(" "+months[nowDate.getMonth()]); document.write(" "+nowDate.getFullYear());
</script> </body> </html>

 

计算一年后的日期

标签:get   head   col   log   type   bsp   span   mon   logs   

原文地址:http://www.cnblogs.com/qfdy123/p/7821794.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!