首页 > 代码库 > 电力项目八--运行监控的保存

电力项目八--运行监控的保存

需求分析:保存运行监控文本内容到数据库,并再次查询后回显。

 页面中调用保存的函数

 function checkchar(){
  
          if(document.Form2.stationRun.value.length>2500){
      
             alert("站点运行情况字数不能超过2500字");
             return;
          }
          if(document.Form2.devRun.value.length>2500){
      
             alert("设备运行情况字数不能超过2500字");
             return;
          }
          document.Form2.action="${pageContext.request.contextPath}/system/elecCommonMsgAction_save.do";
          document.Form2.submit();
      /*     alert(" 待办事宜保存成功!"); */
  }

将数据提交到controlerl中对应的 elecCommonMsgAction_save.do

则对应的控制层的写法:

 

电力项目八--运行监控的保存