标签: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