angualr 单选全选方法(适用购物车/各种列表删除等)
生活随笔
收集整理的這篇文章主要介紹了
angualr 单选全选方法(适用购物车/各种列表删除等)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Html部分:
<table class="pay_attention_table"><thead><tr><!--ng-click="all(selectAll)"--><th class="c_aa w52"><input type="checkbox" class="mr4" ng-model="selectObj.select_all" ng-change="selectAll()">全選</th><th class="c_aa w240 textCenter">名稱</th><th class="c_aa w240 textCenter">領域</th><th class="c_aa w177 textCenter">來源</th><th class="c_aa w177 textCenter">下載時間</th><th class="c_aa w177 textCenter">操作</th></tr></thead><tbody><tr ng-repeat="downloadInfo in myDownload"><!--ng-checked="selectAll"--><td><input type="checkbox" ng-model="downloadInfo.checked" ng-change="selectOne()">{{checked}}</td><td><div class=""><span class="ml4">{{downloadInfo.title}}</span></div></td><td class="textCenter">景觀設計師</td><td class="textCenter">成都</td><td class="textCenter">{{downloadInfo.addTime}}</td><td class="textCenter"><a href="{{downUrl}}" target="_blank" class="c_77" ng-click="downloadAgain(downloadInfo.pid)">再次下載</a><a class="c_77 otherLine" ng-click="downloadDel(downloadInfo.id)">刪除</a></td></tr></tbody></table>Js部分:
//單選多選$scope.selectObj={};$scope.selectOne = function () { //單選var temp = true;angular.forEach($scope.myDownload,function (item) {if(!item.checked){temp = false}});$scope.selectObj.select_all=temp;};$scope.selectAll = function () { //多選angular.forEach($scope.myDownload,function (item) {item.checked = $scope.selectObj.select_all});};?
轉載于:https://www.cnblogs.com/vonson/p/7665935.html
總結
以上是生活随笔為你收集整理的angualr 单选全选方法(适用购物车/各种列表删除等)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Codeforces Gym101518
- 下一篇: Layer笔记