HTMLform表单的两种提交⽅式,submit和button的⽤法
1.当输⼊⽤户名和密码为空的时候,需要判断。这时候就⽤到了校验⽤户名和密码,这个需要在jsp的前端页⾯写;有两种⽅法,⼀种是⽤submit提交。⼀种是⽤button提交。
⽅法⼀:
在jsp的前端页⾯的头部插⼊⼀个js⽅法:
function checkUr(){
var result = ElementById("urid").value;
var password = ElementById("urpassid").value;
if(result == "" ){
托福中国官网alert("⽤户名不能为空");
return fal;
}
windshieldif(password == "" ){
alert("密码不能为空");
单程票英语
kangalreturn fal;
}el{
return true;
}
英语俗语}behave
在form表单⾥写成这样:
<form id="formid" name= "myform" method = 'post' action = 'ur_login_submit.action' onsubmit = "return checkUr();" >
<table width="100%" border="0">
<tr>
<td width="60" height="40" align="right">⽤户名 </td>
<td><input type="text" value="" class="text2" name = "urname" id = "urid"/></td>excellent是什么意思
</tr>
<tr>
<td width="60" height="40" align="right">密 ;码 </td>
<td><input type="password" value="" class="text2" name = "urpass" id = "urpassid"/></td>
</tr>
<tr>
<td width="60" height="40" align="right"> </td>
<td><div class="c4">
<input type="submit" value="" class="btn2" />
快速全身美白方法
⽅法⼆:
function checkUr(){
var result = ElementById("urid").value;
var password = ElementById("passid").value;
if(result == "" ){
alert("⽤户名不能为空");
return fal;
}
if(password == "" ){
alert("密码不能为空");
return fal;
ccx
}
}
form表格的写法,需要写id
<form id="formid" method = 'post' action = 'ur_login_submit.action' >
button按钮的写法如下:
<input type="button" value="" class="btn2" onclick = "checkUr();" />
//除了原博的上述两种办法,本⼈还知道⼀种
⽅法三:
<button type="submit" id="loginBtn">Login</button>
...
(与⽅法⼆类似,只是不需要在js⽅法⾥写上最后那⾏提交表单的命令)
>award winning