/**
* 日付の形式
* @param {Object} ms は、指定された日付から世界標準時の 1970 年 1 月 1 日の午前 0 時までのミリ秒数を表します
* @return year-month-date hh:mm
*/
Util .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> * または Util.formateDate(), 'yyyy/MM/dd mm/hh'); <BR> *
* @param {Date}date 書式設定する必要がある日付オブジェクト
* @param {Object} style style
* @return 書式設定された現在時刻を返します
*/
Util.formatDate = function(date, style){
var y = date.getFull Year();
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) ;
}