作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
目前,我在 AngularJS 中的每一行都有一个复选框;
<table class="table table-hover data-table sort display">
<thead>
<tr>
<th>Name</th>
<th>Location</th>
<th>Checkbox Alert</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in filteredList | orderBy:columnToOrder:reverse">
<td>{{item.name}}</td>
<td>{{item.location}}</td>
<td><input type="checkbox" ng-model="selected" ng-change="display(selected, item)"></td>
</tr>
</tbody>
</table>
我有一个 bool 变量 {{item.checkbox_status}}
,它反射(reflect)复选框是否应该被选中或取消选中。我应该如何将这个变量放入上面的表格html代码中以获得复选框以反射(reflect)检查状态?还是我需要在 Controller 上工作?
最佳答案
ng-model 就是您的答案。
即:
<input type="checkbox" ng-model="item.checkbox_status" ng-click="alert_display()" ng-true-value="true" ng-false-value="false" />
引用: https://docs.angularjs.org/api/ng/input/input%5Bcheckbox%5D
希望我有所帮助。
关于javascript - 如何让复选框在 AngularJS 中显示选中/未选中状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24160616/
我是一名优秀的程序员,十分优秀!