點晴模切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,聯(lián)系電話:4001861886 該文章在 2023/11/24 10:00:03 編輯過 |
關鍵字查詢
相關文章
正在查詢... |