首頁 >web前端 >js教程 >javascript日期格式化範例分享_基礎知識

javascript日期格式化範例分享_基礎知識

WBOY
WBOY原創
2016-05-16 16:57:051071瀏覽

複製程式碼程式碼如下:

/**
 * 格式化日期 
 * @param {Object} ms 表示指定日期與1970 年1 月1 日午夜間全球標準時間的毫秒數 
 * @return year-month-date hh:mm 
 * @return year-month-date hh:mm 
 * @return year-month-date hh:mm 
 * @return year-month-date hh:mm 
 * @return year-month-date hh:mm 
 * @return year-month-date hh:mm 
 * @return year-month-date hh:mm 
 * @return year-month-date hh:mm 
 */ .parseToDate = function(ms){   
        var date = (new Date(parseInt(ms))); 
        return formatDate(date,"yyyy-MM-dd mm:hh");  
 };  
/**
 * 格式化日期 
 *   <br> * yyyy-------年  <br> * MM---------月  <br> * dd--- ------日  <br> * hh---------時  <br> * mm---------分  <br> * 如:Util.formatDate(new Date( ) , 'yyyy-MM-dd mm:hh');  <br> * or Util.formateDate(new Date(), 'yyyy/MM/dd mm/hh');  <br> * * @ param {Date}date 需要格式化的日期物件 
 * @param {Object} style 樣式 
 * @return 返回格式化後的目前時間 
 */  
Util.formatDate = function(日期, 樣式){ 
      var y = date.{ 
      var y = date.  
      var M = "0" (date.getMonth() 1);  
      M = M.substring(m.length - 2); 
      var d = "0" date.getDate(); 
      d = d.substring(d.length - 2);  
      var h = "0" date.getHours();         h = h.substring(h.length - 2);         var m = "0" date.getMinutes();         m = m.substring(m.length - 2);         return style.replace('yyyy', y).replace('MM', M).replace('dd', d).replace('hh', h).replace('mm', m) ;   }
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn