有条件地在角度js中添加ng-checked属性

时间:2014-08-16 13:58:50

标签: angularjs

我想添加以下内容:

<input  type="radio" ng-name='{{quest.id}}' ng-model='$parent.$parent.choice.input'  ng-value='{{option}}' id='{{quest.id}}-{{option.id}}' ng-required='required'>

属性:ng-checked ='checklast'

只有在某些条件成立时,我该怎么做?

1 个答案:

答案 0 :(得分:8)

只是一个例子

<input type="radio" ng-checked="testModel.child_1 && testModel.child_2" ng-model="isChecked"/>

修改

如果您使用ng-repeat显示无线电列表,那么

<input  type="radio" ng-name='{{quest.id}}' ng-model='$parent.$parent.choice.input'  ng-value='{{option}}' id='{{quest.id}}-{{option.id}}' ng-required='required' ng-checked="$index == $last">