摘要: //日期转换 function ChangeDateFormat(time) { if (time != null) { var date = new Date(parseInt(time.replace("/Date(", "").replace(")/", ""), 10)); var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1; var ... 阅读全文
posted @ 2014-03-04 15:28 beau 阅读(377) 评论(0) 推荐(0) 编辑