JQuery驗證jsp頁面屬性是否為空白(執行個體代碼)_jquery

來源:互聯網
上載者:User

說明:驗證是否為空白的前提首先要保證是在提交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>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.