无法使用类型脚本检查敲除中的单选按钮

时间:2015-07-13 14:39:18

标签: javascript jquery knockout.js typescript

我的单选按钮是如何绑定的,

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

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

isNoneChecked: KnockoutObservable<boolean>;

在构造函数中,我只需将其设置为&#39; true&#39;,

this.isNoneChecked(true);

我希望在页面加载时检查这个单选按钮。

它似乎不起作用。

1 个答案:

答案 0 :(得分:0)

超酷是对的,

这是TypeScript,

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

由于