我是AngularJS的新手,尝试通过更改来获取选定的下拉列表项会分散其他项。我尝试了不同的方法,但仍然没有预期的解决方案。以下是我的代码: enter image description here Angular js代码
<select ng-model="selectedProofs"
ng-options="mnt.id as mnt.type for mnt in proofTypes"
ng-change="changeproofId()">
<option class="control-label ng-binding" value="" selected="selected">Select </option>
<option value="">{{primaryIdCard}}</option>
</select>
默认情况下,将在下拉菜单中选择PrimaryIdCard。现在,如果我单击“ PrimaryIdCard”示例:PanCard,则应显示ng选项中可用的其他证明类型。是否可以使用任何标志?我已经尝试过但没有得到。谢谢。