我想添加以下内容:
<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'
只有在某些条件成立时,我该怎么做?
答案 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">