
Date
web_cgh
努力奋斗吧!
展开
-
react,form表单的封装
封装表单数据原创 2022-06-18 23:40:00 · 621 阅读 · 0 评论 -
JS获取当月第一天和最后一天
// 把日期格式转换成时间撮 var time = new Date().getTime(); console.log(getCurrentMonthFirst()); console.log(getCurrentMonthLast()); // 获取当前月的第一天 function getCurrentMonthFirs...转载 2018-04-23 14:22:07 · 20656 阅读 · 1 评论 -
关于IE11不能new date,转换时间的方法
//格式化日期function FormatDate(strTime){ //这里的 strTime = "2017-03-31 11:42:00"; // IE11里面不能直接转换带"-",必须先替换成"/" strTime = strTime.replace("-","/"); strTime = strTime.replace("-","/"); ...原创 2019-08-22 20:48:36 · 1573 阅读 · 0 评论