untitled-1.dwt.jsp

来自「jsp+access简易选课系统」· JSP 代码 · 共 47 行

JSP
47
字号
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>无标题文档</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->		
</head>

<body>

<%!  public boolean Check(){
        if(document.form1.che.value=="")
		{
		    alert("对不起,用户名不能为空!");
			return false;
		}
		else 
		return true;
		}
%>

<form  name="form1" onclick="return Check(this)"method="post" action="checkresult.jsp">
<BR>
<font size="5" color="red">
check all Favorite fruits:
<br />
<input type="checkbox" name="fruit" value="apples" /> apples
<BR>
<input type="checkbox" name="fruit" value="grapes" /> grapes
<BR>
<input type="checkbox" name="fruit" value="oranges" /> oranges
<BR>
<input type="checkbox" name="fruit" value="melons" /> Melons
<BR>
<input type="text" size="20" name="che" value="" />
<BR />
<br /><input  type="submit" name=submit value="Submit" />
</font>
</form>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?