国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

AngularJS 實現購物車全選反選功能

2019-11-19 15:05:28
字體:
來源:轉載
供稿:網友

廢話不多說了,直接給大家貼代碼了,具體代碼如下所示; 

<!DOCTYPE html><html lang="en" ng-app="testMo"><head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" href="css/bootstrap.css" rel="external nofollow" > <style> .div1{  margin: 20px; } </style></head><body><div ng-controller="testCtrl" class="div1"> <h4>angularJS--購物車實現全選/取消全選</h4> <button type="button" class="btn btn-info" ng-click="addProduct()">添加商品</button> <button type="button" class="btn btn-danger" ng-click="deleteProduct()">刪除商品</button> <br><br> <table class="table table-bordered table-responsive" > <thead> <td>操作</td> <td>check狀態</td> <td>商品名稱</td> <td>單價</td> <td>數量</td> <td>小計</td> </thead> <tr ng-repeat="p in cart" >  <td><input type="checkbox" ng-checked="p.checked" ng-click="echoChange(p.id,p.checked,selectAll)"></td>  <td>{{p.checked}}||{{p.checked}}</td>  <td>{{p.name}}</td>  <td>單價:¥{{p.price}}</td>  <td>數量:<input type="number" ng-model="p.count" min="0" value="p.count"></td>  <td>小計:¥{{p.sum}}</td> </tr> </table> <br> <input type="checkbox" ng-model="selectAll" ng-click="selectAllClick(selectAll)"><span ng-hide="selectAll" >全選</span><span ng-show="selectAll">取消全選</span> <br><br> 已選擇<span>{{jishuqi}}</span>件商品,總金額:<span>¥{{ sumTotal }}</span></div><script src="../js/angular.js"></script><script> angular.module('testMo',['ng']).controller('testCtrl',function($scope){// $scope.p1=new Object();// $scope.p1.price=10;// $scope.p1.count=1; //購物車應該是一個數組 $scope.selectAll=false;//全選默認為false $scope.cart=[{id:0,name:'商品0',price:10,count:5,sum:10,checked:false}]; $scope.addProduct= function (){  var p=new Object();  p.id=$scope.cart.length;  p.name='商品'+ p.id  p.price=Math.floor(Math.random()*100);//對數值向下取整  p.count=1;  p.sum= p.price* p.count;  p.checked=false;  $scope.cart.push({id: p.id,name: p.name,price:p.price,count: p.count,sum: p.sum,checked: p.checked});  console.log($scope.cart); } //刪除商品 $scope.deleteProduct= function (){  $scope.cart.pop();//刪除數組中的最后的一個元素,并且返回這個元素,會改變數組里的元素 } //全選按鈕check的點擊事件 $scope.selectAllClick= function (sa) {  for(var i=0;i<$scope.cart.length;i++){  $scope.cart[i].checked=sa;  } } //單個數據的check事件 $scope.echoChange=function(id,ch,se){  $scope.cart[id].checked=!ch;  //當所有都選中時,全選也要被勾選  var cc=0;//計算當前數組中checked為真的數目  for(var i=0;i<$scope.cart.length;i++){//  if($scope.cart[i].checked==true){//   cc++;//  }  $scope.cart[i].checked?cc++:cc;  }  $scope.selectAll=(cc==$scope.cart.length);//當為真的數目=數組長度時,證明全部勾選//  console.log($scope.selectAll); } //監控數據 $scope.$watch('cart',function(newValue,oldValue,scope){  $scope.sumTotal=0; //總計  $scope.jishuqi=0; //計數器  for(var i in newValue) {  var sumN = newValue[i].count * newValue[i].price; //計算出新的結果  $scope.cart[i].sum = sumN.toFixed(2); //保留兩位小數并且把它賦值給元數據;  if (newValue[i].checked) {   $scope.sumTotal += sumN;   $scope.jishuqi++;//   console.log($scope.sumTotal);//   console.log($scope.jishuqi);  }  } },true); /*$watch簡介:在digest執行時,如果watch觀察的的value與上一次執行時不一樣時,就會被觸發。  AngularJS內部的watch實現了頁面隨model的及時更新。  $watch方法在用的時候主要是手動的監聽一個對象,但對象發生變化時觸發某個事件。  $watch(watchFn,watchAction,deepWatch);  如果不加第三個參數,那么只會監聽cart數組,只有當cart引用改變時才會觸發,因此當需要監聽一些引用對象時需要把第三個參數設置成true。  */ });</script></body></html>

PS:下面給大家分享angularjs 購物車的代碼,具體代碼如下所示:

<!DOCTYPE html><html lang="en"><head>  <meta charset="UTF-8">  <title>購物車</title>  <script type="text/javascript" src="js/angular.js"></script></head><body ng-app="product" ng-controller="productController"><center><h2>商品列表</h2><div class="container">  <!--導航欄-->  <nav>    <div >      <div id="bs-example-navbar-collapse-1">        <div>          <input type="text" ng-model="search" placeholder="產品名稱">              產品價格:          <select>            <option>0-1000</option>            <option>1000-2000</option>            <option>2000-5000</option>          </select>             <input type="button" style="background:#FF0000" value="全部刪除" ng-click="removeAll()">        </div>      </div>    </div>  </nav><br />  <table border="1 solid" cellpadding="10" cellspacing="0">    <thead>    <tr>      <th ng-click="sortProduct('id')">        產品編號        <span></span>      </th>      <th ng-click="sortProduct('name')">        產品名稱        <span></span>      </th>      <th ng-click="sortProduct( 'price')">        產品價格        <span></span>      </th>      <th>        操作        <span></span>      </th>    </tr>    </thead>    <tbody>    <tr ng-repeat="item in productList | filter:{ 'name':search} | orderBy:(orderSign+orderColumn) ">      <td>        {{item.id}}      </td>      <td>        {{item.name}}      </td>      <td>        {{item.price | currency:'(RMB)'}}      </td>      <td>         <input type="button" style="background:#FF0000" value="刪除"  ng-click="delProduct(item.name)">      </td>    </tr>    </tbody>  </table></div><script>  angular.module('product',[])    .factory('productList',function(){      return [        { id:910,name:"imac",price:15400 },        { id:80,name:"iphone",price:5400 },        { id:29,name:"ipad",price:14200 },        { id:500,name:"ipad air",price:23400 },        { id:1200,name:"ipad mini",price:22000},        { id:100,name:"android",price:9990 }      ]    })    .controller('productController',function($scope,productList){      /*$scope.search = "ipad";//定義一個變量      alert($scope.search);*/      $scope.productList=productList      $scope.orderColumn='name'; //排序字段      $scope.orderSign='-';   //為空時正序 為負號時倒序      $scope.sortProduct=function(sortColumn){ //點擊列標題排序事件        $scope.orderColumn=sortColumn;//覺得按照那一列進行排序        if($scope.orderSign=="-"){          $scope.orderSign="";        }else{          $scope.orderSign='-';        }      };      //刪除產品      $scope.delProduct = function(name){        //alert(name);        if(name!=""){          if(confirm("是否刪除"+name+"商品") ){            var p;            for (index in $scope.productList) {              p = $scope.productList[index];              if(p.name == name){                $scope.productList.splice(index,1);              }            }          }        }      }      //清空購物車$scope.removeAll = function(){if(confirm("你確定要清空購物車所有商品嗎?")){$scope.productList = [];}}    });</script></center></body></html>

好了,代碼到此結束。

總結

以上所述是小編給大家介紹的AngularJS 實現購物車全選反選功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對武林網網站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 远安县| 深州市| 望都县| 永登县| 托克逊县| 黑山县| 大石桥市| 衡水市| 泰州市| 凌源市| 多伦县| 汉源县| 孙吴县| 东光县| 旌德县| 汽车| 新泰市| 南川市| 天水市| 政和县| 宜川县| 淮安市| 尖扎县| 蒙城县| 清徐县| 江达县| 南开区| 武邑县| 江永县| 息烽县| 榆中县| 贵阳市| 灯塔市| 河北区| 石河子市| 项城市| 丰台区| 阳城县| 奉化市| 长治市| 莲花县|