赞
踩
- <script type="text/javascript">
-
- function getDate() {
- var date = new Date(); // 得到当前日期
- var newyear = date.getFullYear(); // 得到当前日期年份
- var newmonth = date.getMonth() + 1; // 得到当前日期月份(注意: getMonth () 方法一月为 0, 二月为 1, 以此类推。)
- var day = date.getDate(); // 得到当前某日日期(1-31)
- newmonth = (newmonth < 10 ? "0" + newmonth : newmonth); //10 月以下的月份自动加 0
- //var newdate = newmonth + "月" + day + "日";
- var newdate = newyear + "-" + newmonth + "-" + day;
- return newdate;
- }
- </script>
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。