91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么用jQuery實現表單驗證功能

發布時間:2021-10-21 15:05:30 來源:億速云 閱讀:136 作者:iii 欄目:開發技術

本篇內容介紹了“怎么用jQuery實現表單驗證功能”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

別忘了引入jQuery框架!!!

話不多說直接先上jQuery部分代碼:

<script type="text/javascript">
 $(document).ready(function(){
  var tip1 = "<span class='span1'>用戶名不能為空!</span>";//聲明發生錯誤時在輸入框后面添加的span
  var tip2 = "<span class='span2'>郵箱格式錯誤或不能為空!</span>";
  var tip3 = "<span class='span3'>地址不能為空!</span>";
  var tip4 = "<span class='span4'>密碼長度不能小于五位且最多為十位 !</span>";
  var condition = /^([\.a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/;//聲明判定郵箱格式的條件
  $(".id").blur(function(){
   if(!$(".id").val()){//判定用戶名非空
    $(".span1").remove();
    $(".id").after(tip1);
   }
   else{
    $(".span1").remove();
   }
  });
  $(".email").blur(function(){
   
   if(!condition.test($(".email").val())){//判定郵箱格式
    $(".span2").remove();
    $(".email").after(tip2);
   }
   else{
    $(".span2").remove();
   }

  });
  $(".adress").blur(function(){
   if(!$(".adress").val()){//判定地址非空
    $(".span3").remove();
    $(".adress").after(tip3);
   }
   else{
    $(".span3").remove();
   }
  });
  $(".pwd").blur(function(){
   
   if($(".pwd").val().length < 5||$(".pwd").val().length >10){//判定密碼長度不能小于5位且不能大于10位
    $(".span4").remove();
    $(".pwd").after(tip4);
   }
   else{
    $(".span4").remove();
   }
  });
  $(".button").click(function(){//符合所有條件則彈出彈窗表單驗證通過,如果不符合則彈出彈窗提醒用戶更改
   if(!$(".id").val()||!condition.test($(".email").val())||!$(".adress").val()||$(".pwd").val().length < 5||$(".pwd").val().length >10){
    alert("注冊信息有誤,請更改個人信息");
   }
   else{
    alert("注冊成功");
   }
  })
 })
</script>

結構和樣式:

<div class="main_box">
  <div class="title">
   歡迎注冊原魔
  </div>
  <div class="box">
  <img alt="插圖"  src="./img/可莉派萌.png" class="img">
   <form>
    用戶名:<input class="id" type="text" ><br>
    郵&emsp;箱:<input class="email" type="text"><br>
    地&emsp;址:<input class="adress" type="text"><br>
    密&emsp;碼:<input class="pwd" type="password"><br>
    <button type = "button" class="button">注&emsp;&emsp;&emsp;冊</button>
   </form>
  </div>
 </div>
span{
  color:white;
 }
 body{
  font-family: sans-serif;
 }
 .main_box{
  width: 100%;
  height: 910px;
  background-color: red;
  background-image: linear-gradient(#e66465, #000000);
 }
 .title{
  font-size: 5em;
  color: white;
  width:100%;
  height: 100px;
  text-align: center;
 }
 .box{
  width: 1050px;
  height: 310px;
  margin: 150px auto 50px auto;
  padding-left: 360px;
 }
 input{
  height: 40px;
  width: 200px;
  border-radius: 20px;
  border: solid 1px #B5B5B5;
  margin: 10px;
  font-size: 1.2em;
 }
 form{
  color:white;
  font-size:1.2em;
  float: left;
  margin-left: 50px;
 }
 
 .button{
  width: 280px;
  height: 40px;
  background-color: #9781FD;
  border-radius: 25px;
  color:white;
  font-size: 1.3em;
  font-weight: 700;
  margin-top: 10px;
  
 }
 .img{
  width:310px;
  height: 310px;
  float: left;
 }

“怎么用jQuery實現表單驗證功能”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新闻| 雅安市| 石河子市| 观塘区| 阿图什市| 墨江| 鹰潭市| 买车| 新昌县| 钟山县| 东城区| 乌拉特前旗| 华池县| 乌鲁木齐市| 永春县| 铜鼓县| 肥城市| 吉水县| 西林县| 桐城市| 永康市| 团风县| 永嘉县| 蒲江县| 淮安市| 麦盖提县| 松阳县| 绥化市| 房山区| 福州市| 土默特右旗| 铜山县| 荥经县| 和龙市| 东阳市| 西充县| 灵丘县| 佛冈县| 积石山| 克东县| 昂仁县|