📄 patent_plan_info.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" %>
<%@ page import="java.util.Date,java.text.SimpleDateFormat" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<script language="javascript">
<!--
function check() {
var sign;
sign="1"
if(form1.plan_context.value.length==0)
{sign=0;
alert("计划不能为空!")
}
if(sign==1)
{
form1.submit();
}
}
//-->
</script>
<style TYPE="text/css">
<!--
body {font-size:10pt;color:#415161}
td {font-size:10pt;color:#415161}
th {font-size:10pt;color:#415161}
</style>
<%
SimpleDateFormat df=new SimpleDateFormat("yyyy");
String date=df.format(new Date());
%>
<form name="form1" method="post" action="patent_plan_info_co.jsp">
<table width="100%" border="1" cellspacing="0" bordercolor="#CCCCFF">
<tr>
<td bgcolor="#CCCCFF"><strong><%=(String)session.getValue("enterprise_name")%></strong></td>
</tr>
<tr>
<td><strong><%=date%>年 专利申请计划 </strong></td>
</tr>
<tr>
<td> <div align="left">
<textarea name="plan_context" cols="100" rows="20"></textarea>
</div></td>
</tr>
</table>
<div align="right">
<input type="button" name="Submit" value="提交" onclick="check()">
</div>
</form>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -