使用AngularJS v1.3.14
我无法在Angularjs的默认选中模式下加载这些复选框。正如你所看到的,我甚至使用ng-init="checked=true"
但没有完成工作
<p>Add to wish list:<input type="checkbox" ng-model="wish" ng-init="checked=true" /></p>
<p>Send u result:<input type="checkbox" ng-model="result" ng-init="checked=true" /></p>
<p>include tax:<input type="checkbox" ng-model="tax" ng-init="checked=true" /></p>
你可以告诉我有什么问题吗?
答案 0 :(得分:1)
试试这个:
<p>Add to wish list:<input type="checkbox" ng-model="wish" ng-init="wish=true" /></p>
或者:
<p>Add to wish list:<input type="checkbox" ng-model="wish" ng-checked="true" /></p>
ng-init中的语句只是在元素初始化时执行的表达式。在ng-model中你有数据绑定到元素,所以只需使用ngInit或ngChecked将数据的默认值设置为true。