說明:驗證是否為空白的前提首先要保證是在提交form之前驗證的,如果驗證結果有為空白的項那麼限制表單不能提交,並且提示驗證錯誤資訊,驗證頁面屬性都不為空白的情況下表單正常提交,這部分屬於JS部分的東西,與後台商務邏輯層和控制層基本沒有任何關係。
限制提交的方法可以是在form標籤裡限制,也可以是在submit按鈕上添加onclick事件節流:
<form action=".." method="post" onsubmit="return check();">
<input type="submit" value="提交" onclick="return check()" >
案例:
<form action="./login.action" method="post" onsubmit="return check();">
<table>
<tr>
<td width="451"> </td>
<td width="378">
<table >
<tr>
<td width="60"> </td>
<td>
<font color="#000000">使用者名稱:</font>
</td>
<td align="left"> <input name="userInfo.userName" id="userName" type="text">
<span id="checkUserName"></span>
</td>
<tr> <td> </td>
<td align="right" nowrap>
<font color="#000000">密 碼:</font>
</td>
<td align="left">
<input name="userInfo.password" id="password" type="password">
<span id="checkPassword"></span>
</td>
</tr>
<tr>
<td colspan="4" align="center" nowrap>
<input type="submit" id="btnLog" value=" 登 錄 " >
<input type="reset" value=" 重 置 ">
</td>
</tr>
</table>
</form>
<!--引入js檔案 jquery-->
<script type="text/javascript" src="js/common/jquery-1.5.1.min.js"></script>
<script type="text/javascript">
function check(){
var userName=$("#userName").val();
var password=$("#password").val();
alert(userName);
alert(password);
if(userName==""){
$("#checkUserName").html("<font color='red'>使用者名稱不可為空!</font>");
return false;
}
if(password==""){
$("#checkPassword").html("<font color='red'>密碼不可為空!</font>");
return false;
}
return true;
}
</script>