gpt4 book ai didi

javascript - 无法使用类型脚本检查 knockout 中的单选按钮

转载 作者:搜寻专家 更新时间:2023-10-30 22:02:54 24 4
gpt4 key购买 nike

我的单选按钮就是这样绑定(bind)的,

<input type="radio" name="none" value="-1" data-bind="enable: isEnabled, checked: isNoneChecked" />None

这是一段 Typescript 代码,isNoneChecked 是这样定义的,

isNoneChecked: KnockoutObservable<boolean>;

在构造函数中,我只是将其设置为“true”,

this.isNoneChecked(true);

我希望在页面加载时选中此单选按钮。

它似乎不起作用。

最佳答案

超酷就对了,

这是 TypeScript,

class ViewModel {
constructor() {
this.isNoneChecked('true');
}
isNoneChecked: KnockoutObservable<string> = ko.observable('false');
}

谢谢

关于javascript - 无法使用类型脚本检查 knockout 中的单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31386363/

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