我想在默認情況下選擇一個單選按鈕。據我所知,我應該添加檢查屬性:HTML/Select單選按鈕不起作用
<table>
<tr>
<b> Storage </b>
</tr>
<tr>
<td>
<div class="form-group">
<input type="radio" name="store" value="local" ng-model="store" checked="checked" /> Local
</div>
</td>
<td>
<div class="form-group">
<input type="radio" name="store" value="second" ng-model="store" /> Second (Amazon)
</div>
</td>
<td>
<div class="form-group">
<input type="radio" name="store" value="cloud" ng-model="store" /> Cloud
</div>
</td>
</tr>
</table>
但是本地不默認選中(沒有檢查)。爲什麼?提前
感謝
我已經試過了。相同... – MiddleWare
https://jsfiddle.net/4xkmd2oc/1/只是在jsfiddle中粘貼了你的代碼。它正在工作......看起來你的角色綁定正在破壞它 – FKutsche