我使用的是單一的HTML5必需的屬性爲單選按鈕組,因爲這樣在單選按鈕上需要
<td>
<label for="input1">English:</label><input type="radio" ng-model="Customer.language" id="input1" required value="english" />
<label for="input2">Arabic:</label><input type="radio" ng-model="Customer.language" id="input2" value="arabic" />
</td>
,但它不工作作爲每expectaions 我不能夠提交結果,直到我選擇英語即,甚至當我選擇阿拉伯語的「reqired場消息提示英語」
可能的重複[HTML5:如何使用「必需」屬性與「無線電」輸入字段](http://stackoverflow.com/questions/8287779/html5-how-use-the-required-attribute-with -a-RADIO-輸入場)。對此,你需要給你的收音機賦予相同的'name'屬性 - 你的名字沒有名字 – Pete
當我有ng模型的時候,我需要給名字嗎? –
好,如果你想使用HTML 5驗證,而不是角度驗證,那麼我會建議你做 – Pete