公司->保存 和验证

来源:互联网 发布:淘宝商品资质怎么弄 编辑:程序博客网 时间:2024/05/01 20:58
//页面保存function saveOrUpdateFun(){var isOk = true;// 前置天数不能为空$("[id^=leadTimeDay_]").each(function(){if(!$(this).val()){alertE('<%= alert_leadDaysNotNull %>');isOk = false;return false;}});$("[id^=PH_]").each(function(){if(!$(this).val()){alertE('<%= alert_phNotNull %>');isOk = false;return false;}});// 最少要有一个工段才能保存var tableRowNumber = $("[id^=leadTimeDay_]").length;if(tableRowNumber == 0){isOk = false;alertE('<%= alert_SectionIsNullNotSave %>');return false;}if(isOk){var formObj = document.getElementById("dynbean");formObj.action = contentPath + "/masterProductionSchedule/saveOrUpdateModifyPHSetup.do";formObj.submit();}}

0 0
原创粉丝点击