gpt4 book ai didi

angularjs - Angularjs 和单选按钮

转载 作者:行者123 更新时间:2023-12-02 21:51:34 24 4
gpt4 key购买 nike

有谁知道如何使用 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 最终将与选择的两个单选按钮绑定(bind)。

谢谢

最佳答案

ng-model 设置为等于您要检查的 radio 的

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

$scope.mode = "point";

关于angularjs - Angularjs 和单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18537203/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com