溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何基于AngularJS實(shí)現(xiàn)表單驗(yàn)證功能

發(fā)布時(shí)間:2021-04-24 11:53:25 來源:億速云 閱讀:198 作者:小新 欄目:web開發(fā)

這篇文章主要介紹如何基于AngularJS實(shí)現(xiàn)表單驗(yàn)證功能,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

js的作用是什么

1、能夠嵌入動(dòng)態(tài)文本于HTML頁面。2、對(duì)瀏覽器事件做出響應(yīng)。3、讀寫HTML元素。4、在數(shù)據(jù)被提交到服務(wù)器之前驗(yàn)證數(shù)據(jù)。5、檢測(cè)訪客的瀏覽器信息。6、控制cookies,包括創(chuàng)建和修改等。7、基于Node.js技術(shù)進(jìn)行服務(wù)器端編程。

具體內(nèi)容如下

<!--實(shí)例解析

ng-app 指令定義了 AngularJS 應(yīng)用。

ng-controller 指令定義了應(yīng)用控制器。

ng-model 指令綁定了兩個(gè) input 元素到模型的 user 對(duì)象。

formCtrl 函數(shù)設(shè)置了 master 對(duì)象的初始值,并定義了 reset() 方法。

reset() 方法設(shè)置了 user 對(duì)象等于 master 對(duì)象。

ng-click 指令調(diào)用了 reset() 方法,且在點(diǎn)擊按鈕時(shí)調(diào)用。

novalidate 屬性在應(yīng)用中不是必須的,但是你需要在 AngularJS 表單中使用,用于重寫標(biāo)準(zhǔn)的 HTML5 驗(yàn)證。 -->
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<meta charset="utf-8">
<script src="js/angular.js"></script>
</head>
<body>
<!-- Checkbox(單選框)
我們可以使用 ng-model 來綁定單選按鈕到你的應(yīng)用中。
單選框使用同一個(gè) ng-model ,可以有不同的值,但只有被選中的單選按鈕的值會(huì)被使用
-->
<form>
 選擇一個(gè)選項(xiàng):
 <input type="radio" ng-model="myVar" value="dogs">Dogs
 <input type="radio" ng-model="myVar" value="tuts">Tutorials
 <input type="radio" ng-model="myVar" value="cars">Cars
</form>
<div ng-switch="myVar">
 <div ng-switch-when="dogs">
   <h2>Dogs</h2>
   <p>Welcome to a world of dogs.</p>
 </div>
 <div ng-switch-when="tuts">
   <h2>Tutorials</h2>
   <p>Learn from examples.</p>
 </div>
 <div ng-switch-when="cars">
   <h2>Cars</h2>
   <p>Read about cars.</p>
 </div>
</div>
<p>ng-switch 指令根據(jù)單選按鈕的選擇結(jié)果顯示或隱藏 HTML 區(qū)域。</p><br><br><br><br>

<!-- 下拉菜單
使用 ng-model 指令可以將下拉菜單綁定到你的應(yīng)用中。
ng-model 屬性的值為你在下拉菜單選中的選項(xiàng)
-->
<form>
 選擇一個(gè)選項(xiàng):
 <select ng-model="myVar2">
  <option value="">
  <option value="dogs">Dogs
  <option value="tuts">Tutorials
  <option value="cars">Cars
 </select>
</form>
<div ng-switch="myVar2">
 <div ng-switch-when="dogs">
   <h2>Dogs</h2>
   <p>Welcome to a world of dogs.</p>
 </div>
 <div ng-switch-when="tuts">
   <h2>Tutorials</h2>
   <p>Learn from examples.</p>
 </div>
 <div ng-switch-when="cars">
   <h2>Cars</h2>
   <p>Read about cars.</p>
 </div>
</div>
<p>ng-switch 指令根據(jù)下拉菜單的選擇結(jié)果顯示或隱藏 HTML 區(qū)域。</p><br><br><br><br>

<!-- novalidate-->
<form action="xxx.do" novalidate>
E-mail: <input type="email" name="user_email">
<input type="submit">
</form>
<p><strong>注意:</strong>在 Safari 和 Internet Explorer 9 及之前的版本中不支持 novalidate 屬性。這個(gè)屬性可以關(guān)閉瀏覽器默認(rèn)校驗(yàn)</p><br><br><br><br>


<!--Checkbox(復(fù)選框)
checkbox 的值為 true 或 false,可以使用 ng-model 指令綁定,它的值可以用于應(yīng)用中-->
<div ng-app="">
 <form>
  選中復(fù)選框,顯示標(biāo)題:
  <input type="checkbox" ng-model="myVar">
 </form>
 <h2 ng-show="myVar">My Header</h2>
</div>
<p>標(biāo)題使用了 ng-show 指令,復(fù)選框選中后顯示 h2 標(biāo)簽內(nèi)容。</p><br><br><br><br>

<!-- HTML 表單
HTML 表單通常與 HTML 控件同時(shí)存在
以下 HTML input 元素被稱為 HTML 控件:

  input 元素
  select 元素
  button 元素
  textarea 元素
-->
<div ng-app="myApp" ng-controller="formCtrl">
 <form novalidate>
  First Name:<br>
  <input type="text" ng-model="user.firstName"><br>
  Last Name:<br>
  <input type="text" ng-model="user.lastName">
  <br><br>
  <button ng-click="reset()">RESET</button>
 </form>
 <p>form = {{user}}</p>
 <p>master = {{master}}</p>
</div>

<script>

var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
  $scope.master = {firstName: "John", lastName: "Doe"};
  $scope.reset = function() {

    $scope.user = angular.copy($scope.master);

  };
  $scope.reset();
});

</script>
</body>
</html>

以上是“如何基于AngularJS實(shí)現(xiàn)表單驗(yàn)證功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI