一.获取时间常用方法 1.创建时间对象 var time=new Date() //创建当前的时间信息对象 var time1=new Date(2022,1,1,10,25,30) //创建2022-1-1 10:25:30 的时间对象 2.获取年份信息 var year=time.getFullYear() //time是时间对象 3.获取月份信息 var mouth=time.Mouth() //0代表1月,11代表12月 4.获取日期信息 var date=time.getDate()
//获取当前时间后30天(之前也可),天数不限可修改1 var data = new Date(); var date1 = newe Date(date); date2 = date1.setDate(date.getDate()+ 30); //判断时间时间段不超过一年(参数是String类型) function checkDate(accStart,accEnd){ if(accStart != null){ accStart = Date.parse(accStart); } i
function initEditModal_SI(node) { if (node.siArray == undefined) { node.siArray = new Object(); } var sis = new Array(); // for (var index in node.siArray) { // sis.push(node.siArray[index]); // } if (node.siArray != null) { $.each(node.siArray, func
项目中遇到了从服务器获取时间,现在记录一下方便以后查询: 1.后台代码:(创建一个date对象并以JSON的形式返回去) // 获取服务器时间 public String getNowServerTime() { result = new HashMap<String, Object>(); result.put("nowTime", new Date()); return SUCCESS; } 2.JS获取时间的函数:(对返回的结果做处理,去掉T,并且将-替换为/.处理浏