如何取form中的值,在js中进行判断??
就是取from中输入的值,在js进行判断,达到类似登录过程中提示密码错误的效果!不需调用数据库,只是简单的模拟一下,给两个固定的值。。...
就是取from中输入的值,在js进行判断,达到类似登录过程中提示密码错误的效果!不需调用数据库,只是简单的模拟一下,给两个固定的值。。
展开
1个回答
推荐于2017-11-28
展开全部
function userCheck() {
//申明变量获取输入的值
var username = document.form1.username.value;
var password = document.form1.password.value;
if(username=="") {
window.alert("用户名不能为空。");
document.form1.username.focus();
return false;
}if(username=="abc") {
window.alert("用户名不能为空。");
document.form1.username.focus();
return false;
}
if(password==""){
window.alert("请输入密码");
document.form1.password.focus();
return false;
} if(password=="123"){
window.alert("密码错误");
document.form1.password.focus();
return false;
}} <form method="post" name="form1" action="servlet/LoginServlets">
<center>
<p> <table width="225" border="1" bordercolor="#00FF00">
<tr>
<td width="64"><div align="center">登陆名:</div></td>
<td colspan="2">
<div align="left">
<input type="text" name="username" title="请输入登陆名" />
</div></td></tr>
<tr>
<td><div align="center">密 码:</div></td>
<td colspan="2">
<div align="left">
<input type="password" name="password" size="21" title="请输入密码">
</div></td></tr>
<tr><tr>
<td colspan="2"><div align="center">
<input name="button" type="button" onClick="userCheck()" value="登陆" />
</div></td>
<td><div align="center">
<input name="reset" type="reset" onClick="quxiao()" value="取消" />
</div></td>
</tr>
</table>
//申明变量获取输入的值
var username = document.form1.username.value;
var password = document.form1.password.value;
if(username=="") {
window.alert("用户名不能为空。");
document.form1.username.focus();
return false;
}if(username=="abc") {
window.alert("用户名不能为空。");
document.form1.username.focus();
return false;
}
if(password==""){
window.alert("请输入密码");
document.form1.password.focus();
return false;
} if(password=="123"){
window.alert("密码错误");
document.form1.password.focus();
return false;
}} <form method="post" name="form1" action="servlet/LoginServlets">
<center>
<p> <table width="225" border="1" bordercolor="#00FF00">
<tr>
<td width="64"><div align="center">登陆名:</div></td>
<td colspan="2">
<div align="left">
<input type="text" name="username" title="请输入登陆名" />
</div></td></tr>
<tr>
<td><div align="center">密 码:</div></td>
<td colspan="2">
<div align="left">
<input type="password" name="password" size="21" title="请输入密码">
</div></td></tr>
<tr><tr>
<td colspan="2"><div align="center">
<input name="button" type="button" onClick="userCheck()" value="登陆" />
</div></td>
<td><div align="center">
<input name="reset" type="reset" onClick="quxiao()" value="取消" />
</div></td>
</tr>
</table>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询