| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | <%@ page contentType="text/html;charset=UTF-8" %><%@ include file="/webpage/include/taglib.jsp"%><html><head>	<title>意见反馈管理</title>	<meta name="decorator" content="default"/>	<script type="text/javascript">		var validateForm;		function doSubmit(){//回调函数,在编辑和保存动作时,供openDialog调用提交表单。		  if(validateForm.form()){			  $("#inputForm").submit();			  return true;		  }			  return false;		}		$(document).ready(function() {			validateForm = $("#inputForm").validate({				submitHandler: function(form){					loading('正在提交,请稍等...');					form.submit();				},				errorContainer: "#messageBox",				errorPlacement: function(error, element) {					$("#messageBox").text("输入有误,请先更正。");					if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){						error.appendTo(element.parent().parent());					} else {						error.insertAfter(element);					}				}			});					});	</script></head><body><div class="single-form">	<div class="container view-form">		<form:form id="inputForm" modelAttribute="suggestion" action="${ctx}/sys/suggestion/save" method="post" class="form-horizontal">		<form:hidden path="id"/>		<sys:message content="${message}"/>			<div class="form-group layui-row first">				<div class="form-group-label"><h2>反馈信息</h2></div>				<div class="layui-item layui-col-sm12 with-textarea">					<label class="layui-form-label">反馈内容:</label>					<div class="layui-input-block">						<form:textarea path="content" readonly="true" htmlEscape="false" rows="4" class="form-control "/>					</div>				</div>			</div>		</form:form>	</div></div></body></html>
 |