2

有谁知道如何使用Angular JS默认检查单选按钮?我试着做

<input type= "radio" value= "point" checked= "checked"></input>
<input type= "radio" value= "range"></input>

哪个有效,但是当我尝试在混合中添加一点 Angular JS 时

<input type= "radio" value= "point" ng-model= "mode" checked= "checked"></input>
<input type= "radio" value= "range" ng-model= "mode"></input>

这停止工作,即..当我加载页面时,默认情况下不再检查任何内容。有谁知道 angular 确保默认检查某些内容的方式?我需要检查一些东西,因为我在加载页面时显示的 html 最终将与选择的两个单选按钮中的任何一个相关联。

谢谢

4

1 回答 1

5

设置ng-model等于value您要检查的收音机的。

<input type= "radio" value= "point" ng-model= "mode"></input>
<input type= "radio" value= "range" ng-model= "mode"></input>

$scope.mode = "point";
于 2013-08-30T16:07:36.420 回答