jquery Easyui快速开发总结

最近工作很轻松,整理了些关于easyui的datagrid的开发文档,整理的比较细致,直接复制粘贴就可以使用了。

代码内容如下:

 
   
   
   
   
   
 
//将序列化成json格式后日期(毫秒数)转成日期格式 function ChangeDateFormat(cellval) { var date = new Date(parseInt(cellval.replace("/Date(", "").replace(")/", ""), )); var month = date.getMonth() + < ? "" + (date.getMonth() + ) : date.getMonth() + ; var currentDate = date.getDate() < ? "" + date.getDate() : date.getDate(); return date.getFullYear() + "-" + month + "-" + currentDate; }

以上代码示例给大家分享了jquery Easyui快速开发,希望大家喜欢。

你可能感兴趣的:(jquery Easyui快速开发总结)