带有输入类型复选框的 Angular 表创建代码。
angular.module("tableApp",[]).controller('tableAppCtrl', ['$scope',
function($scope) {
$scope.titleString="Table Demo";
$scope.prodDataTable = [{
"productType": "A",
"productName": "Aaaaaa"
}, {
"productType": "B",
"productName": "Bbbbbb"
}, {
"productType": "C",
"productName": "Cccccc"
}];
}
]);
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div ng-app="tableApp" ng-controller="tableAppCtrl">
<h3>{{titleString}}</h3>
<table>
<tr>
<th><input type="button" value="checkALL"></th>
<th>Product Type</th>
<th>Product Name</th>
</tr>
<tr ng-repeat="d in prodDataTable">
<td><input type="checkbox"></td>
<td>{{d.productType}}</td>
<td>{{d.productName}}</td>
</tr>
</table>
</div>
我一直在使用角度表,我必须在其中包含一个选择模型。
请建议将其与表格一起使用的方法或链接。