我有以下部分观点:
<div id="config">
Call:<input data-bind="value: systemCall" />
</div>
以及以下视图模型:
(function () {
SC.ViewModels.SystemConfig = new function () {
// self reference
var self = this;
self.ViewModel = kendo.observable({
systemCall: "System Call",
});
kendo.bind($("#config"), self.ViewModel);
};
})();
我想验证这是否已正确设置,因此,如果我给systemCall一个&#34; SystemCall&#34;的值,那么当我加载页面时,我不能看到这个吗?目前,我在文本框中看不到任何内容。