/**
* 格式化日期
* @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) ; }