AngularJS實現單獨範圍內的資料操作_AngularJS

來源:互聯網
上載者:User

照例先看效果

下面是這個例子的代碼:

<!DOCTYPE html><html lang="en" ng-app="scApp"><head>  <meta charset="UTF-8">  <title></title>  <script src="lib/angular.min.js" type="text/javascript"></script></head><body ng-controller="scController">  <div>    <div ng-repeat="con in content">      <input type="text" ng-model="con.num1" ng-change="changeNum1(con)"/>      <input type="text" ng-model="num2" value="con.num2"/>      <input type="text" ng-model="con.total" ng-change="changeTotal(con)"/>    </div>  </div></body><script>  var app=angular.module("scApp",[])      .controller("scController",["$scope", function ($scope) {        $scope.num2=2;        $scope.content=[          {            num1:1,            num2:3,            total:3,          },          {            num1:2,            num2:3,            total:6,          },          {            num1:1,            num2:6,            total:6,          }        ];        $scope.changeNum1= function (con) {          con.total=con.num1*con.num2;        };        $scope.changeTotal= function (con) {          con.num1=con.total/con.num2;        }}])</script></html>

總結

其實方法非常簡單,只需要在每個ng-repeat中傳入具體的每一個資料分組就可以實現,例如本例子中的ng-change="changeNum1(con)"<code/>這樣就實現了單獨的小的資料範圍的控制。

以上就是這篇文章的全部內容,希望對大家學習或使用AngularJS能有所協助,如果有疑問可以留言交流。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.