📄 meetcancle.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<title>会议取消管理</title>
<link href="${pageContext.request.contextPath}/Css_file/oa.css" rel="stylesheet" type="text/css" />
<script>
function check(){
var mreason = document.getElementById("mreason").value;
if(mreason==""){
document.getElementById("reason").innerHTML="<font color=\"red\">原因不能为空</font>";
mreason.fcous();
return
}else{
document.getElementById("reason").innerHTML="";
}
form1.submit();
}
</script>
</head>
<body>
<html:form action="/meet.do?task=cancle" styleId="form1">
<table width="100%" cellspacing="0" cellpadding="0" class="tr3 f_one">
<html:hidden property="mid" />
<html:hidden property="mtitle" />
<html:hidden property="mstarttime" />
<html:hidden property="mendtime" />
<html:hidden property="mcontent" />
<html:hidden property="munos" />
<html:hidden property="rmid" />
<html:hidden property="maffixname" />
<html:hidden property="maffixpath" />
<html:hidden property="mmemo" />
<html:hidden property="mpeople" />
<tr class="tr3 f_one">
<th >
会议编号:
</th>
<th>
<bean:write name="meetForm" property="mid" />
</th>
</tr>
<tr class="tr3 f_two">
<th>
取消的原因:
</th>
<th>
<html:textarea property="mreason" cols="50" rows="6"></html:textarea>
<span id="reason"></span>
</th>
</tr>
</table>
</html:form>
<div style="text-align:center;margin-bottom:25px;">
<input type="button" class="btn" value=" 保存 " onclick="check();">
<input type="button" class="btn" value=" 返回 " onclick="javascript:window.history.back();" />
</div>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -