myeclipse jsp 验证的时候在提交表单的时候总是验证出错!但我已经验证了,但前台验证总是不提示呀!

<%@pagelanguage="java"import="java.util.*"contentType="text/html;charset=UTF-8"%><%St... <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>My JSP 'lts.jsp' starting page</title>

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<script src="scripts/trim.js"></script>
</head>

<body>
<h1 align="center">欢迎来到侃大山聊天室!</h1>
<hr color="red">
<table border="1" align="center">
<form name="form1" action="lts1.jsp" method="post" onsubmit="return check()">
<tr><td><b>昵称:</b></td><td><input name="username" size="10" maxlength="10"></td></tr>
<tr ><td colspan="2" align="center"><input type="submit" name="denglu" value="登 陆" ></td></tr>
</form>
</table>
</body>
</html>
<script>
function check(){
//alert("");
var username=form1.username.value.Trim();
if(username==""){
alert("昵称不能为空,你必须输入");
form1.username.value="";
form1.username.focus();
return false;
}
if(username.length<3){
alert("昵称不能小于三个字符");
form1.username.value="";
form1.username.focus();
return false;
}
return true;
}
</script>
展开
 我来答
lmy_sk521
推荐于2016-05-23 · TA获得超过2272个赞
知道小有建树答主
回答量:1330
采纳率:73%
帮助的人:722万
展开全部
可能是你form1.username.value.Trim();语句出的错误,写成这样form1.username.value就可以验证,你可以这样试一试是不是语句里有异常
function check(){
//alert("");
var username;
try{
username=form1.username.value.Trim();
}catch(error){
alert(error);
}
if(username==""){
alert("昵称不能为空,你必须输入");
form1.username.value="";
form1.username.focus();
return false;
}
if(username.length<3){
alert("昵称不能小于三个字符");
form1.username.value="";
form1.username.focus();
return false;
}
return false;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式