关于在jsp中使用js的问题
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<head>
<title>My JSP 'Verify.jsp' starting page</title>
<script type = "text/javascript">
function Verify()
{
var username = document.getElementById("username");
var password = document.getElementById("password");
var repassword = document.getElementById("repassword");
if(username.value.length == 0)
{
//alert(typeof username);
alert("用户名不能为空");
return false;
}
if(password.value.length <=6 || password.value.length >= 15)
{
// alert(password.value);
alert("length of password can't invalid");
return false;
}
if(repassword.value.length <=6 || repassword.value.length >= 15)
{
alert("length of repassword can't invalid");
&