gpt4 book ai didi

javascript - 如何取消选择所有 radio 输入?

转载 作者:行者123 更新时间:2023-12-03 08:28:56 25 4
gpt4 key购买 nike

我正在使用 Angular 并有一个像这样的 radio 输入(如果重要的话,以某种形式):

<input type="radio"
name="inputName"
id="someId"
data-ng-value=true <!-- This select "true" for my ng-model when clicked-->
ng-model = "nameOfMyVarIn$scope"
ng-change = "thisRunsWhenSelectionIsmade(true)"
required></input>

我想清除这个输入。清除绑定(bind)到 ng-model 的变量会清除变量,但不会清除复选框。我找不到如何清除单选按钮本身 in the docs或在 random articles - 它保持选中状态。我从文档中快速复制了该示例,并添加了 $scope.clearSelection - 目标是让此函数取消选择所选的输入。在实际应用程序中,我的表单中有其他输入,因此我不能只清除整个表单。

Plnkr

最佳答案

使用您的 Plnkr,我已将 color 设置为 null 并且它清除了该值。这是你想要的吗?

$scope.clearSelection = function(){
$scope.color = null;
}

这是updated Plnkr

关于javascript - 如何取消选择所有 radio 输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33426121/

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