gpt4 book ai didi

javascript - 复选框的选中属性未按预期工作

转载 作者:行者123 更新时间:2023-11-28 02:37:16 25 4
gpt4 key购买 nike

  <input
type="checkbox"
[(ngModel)]="loc.Selected"
[checked]="loc.Selected"
[value]="loc.Selected"
class="checkbox col-xs-1"
name="Countries"
(change)="addPrimaryLocationItems()" />{{loc.LocationName}}

在上面的代码片段中,尽管值为 true,但复选框未被选中,并且在某些情况下,当值为 false 时,复选框仍被选中。

有谁知道为什么我会在这个检查属性中出现这种不稳定的行为。

最佳答案

尝试删除 [checked]="loc.Selected"。仅使用

<input
type="checkbox"
[(ngModel)]="loc.Selected"
[value]="loc.Selected"
class="checkbox col-xs-1"
name="Countries"
(change)="addPrimaryLocationItems()" />{{loc.LocationName}}

关于javascript - 复选框的选中属性未按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46340291/

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