获取经过多少月分

// 1.获取日期
var brith= Ext.getCmp('brith ').getValue();
var e = brith + ' 00:00:00';  // 补全
// 2.把获取日期进行格式化
var date = new Date();
e = Date.parseDate(e,'Y-m-d h:i:s');
// 3.获取当前时间
var s = new Date();  
//除以1000毫秒,60秒,60分,剩下的就是小时
elapsed = Ext.util.Format.round(((s-e)/1000/60/60/24/30),0); 	// 月份

 

你可能感兴趣的:(获取经过多少月分)