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

日期包装函数

时间:2014-09-02 19:43:15      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:io   ar   cti   sp   on   c   new   bs   r   


function producedate(){
      var date=new Date();
      var str=date.getFullYear()+"-";
      if((date.getMonth()+1)<10){str+="0"+(date.getMonth()+1);}else{str+=

(date.getMonth()+1);};
      str+="-";
      if(date.getDate()<10){str+="0"+date.getDate();}else{str+=date.getDate();}
      return str;
      }

日期包装函数

标签:io   ar   cti   sp   on   c   new   bs   r   

原文地址:http://www.cnblogs.com/zhiguopingtianxia/p/3951975.html

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