Angularjs和单选按钮

时间:2013-08-30 16:03:01

标签: angularjs radio-button

有没有人知道如何使用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>

这停止了工作,即..当我加载页面时,默认情况下不再检查任何内容。有没有人知道角度确保默认情况下检查某些内容的方法?我需要检查一些东西,因为我在加载页面时显示的html最终会被选中两个单选按钮中的哪一个。

由于

1 个答案:

答案 0 :(得分: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";