我想要顯示的默認單選按鈕的選擇價值爲3我的代碼如下: -選擇默認值angularjs
<div class="checkbox-group" ng-init="ac.ServiceCode=3">
<input type="radio" ng-model="ac.ServiceCode" id="acuOne" value="1" ng-change='GetAcuityLevel(1)'>
<label for="acuityone">1</label>
<input type="radio" ng-model="ac.ServiceCode" id="acuTwo" value="2" ng-change='GetAcuityLevel(2)'>
<label for="acuitytwo">2</label>
<input type="radio" ng-model="ac.ServiceCode" id="acuThree" value="3" ng-change='GetAcuityLevel(3)'>
<label for="acuitythree">3</label>
<input type="radio" ng-model="ac.ServiceCode" id="acuFour" value="4" ng-change='GetAcuityLevel(4)'>
<label for="acuityfour">4</label>
<input type="radio" ng-model="ac.ServiceCode" id="acuFive" value="5" ng-change='GetAcuityLevel(5)'>
<label for="acuityfive">5</label>
</div>
但在這種情況下,它總是顯示3,當我在上面刪除代碼它顯示單選按鈕中正確的選定值。我想如果服務返回一些值(1到5),那麼應該選擇單選按鈕,否則應該選擇默認值3。
顯示您的服務。還有什麼是你指出「當我刪除上面的代碼」?你上面說的代碼的哪一部分? –
我在說ng-init =「ac.ServiceCode = 3」 –