点晴模切ERP-增加日期加减一键同步的功能
当前位置:点晴教程→点晴ERP企业管理信息系统
→『 经验分享&操作答疑 』
:点晴ERP-增加日期加减一键同步的功能 将以下代码添加到表体: function formatDateTime(date, format) { const o = { 'M+': date.getMonth() + 1, // 月份 'd+': date.getDate(), // 日 'h+': date.getHours() % 12 === 0 ? 12 : date.getHours() % 12, // 小时 'H+': date.getHours(), // 小时 'm+': date.getMinutes(), // 分 's+': date.getSeconds(), // 秒 'q+': Math.floor((date.getMonth() + 3) / 3), // 季度 S: date.getMilliseconds(), // 毫秒 a: date.getHours() < 12 ? '上午' : '下午', // 上午/下午 A: date.getHours() < 12 ? 'AM' : 'PM', // AM/PM }; if (/(y+)/.test(format)) { format = format.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length)); } for (let k in o) { if (new RegExp('(' + k + ')').test(format)) { format = format.replace( RegExp.$1, RegExp.$1.length === 1 ? o[k] : ('00' + o[k]).substr(('' + o[k]).length) ); } } return format; } function addDate(date,days){ var d=new Date(date); d.setDate(d.getDate()+days); var m=d.getMonth()+1; return d.getFullYear()+'-'+m+'-'+d.getDate(); }
如下图:
将以下代码添加到按钮处的JS保存: var num=document.getElementById('num').value; var nowday=formatDateTime(new Date(), 'yyyy-MM-dd'); nowday=addDate(nowday,3); for (var i=0;i<num;i++){ document.getElementById('demand_consignment_time'+i).value= nowday; } 如下图:
最后保存后,即可测试是否生效。 点晴模切ERP更多信息:http://moqie.clicksun.cn,联系电话:4001861886 该文章在 2023/11/24 10:00:03 编辑过 |
关键字查询
相关文章
正在查询... |