我第一次使用 knockout.js (v2.2.1),并尝试构建一个表格,其中元素基于视图模型中的“IsReadOnly”属性在文本和输入字段之间切换。这是使用表格单元格内的跨度和输入标签上的“可见”来完成的。
这是表格:
<table>
<tr>
<td colspan="2">
<button id="btnEditSave" data-bind="text: btnEditSave, click: doEditSave" style="float:right;" />
</td>
</tr>
<tr>
<td>Server Name: </td>
<td>
<span data-bind="text: Server.ServerName, visible: IsReadOnly() == true" />
<input data-bind="value: Server.ServerName, visible: IsReadOnly() == false" maxlength="50" style="width:400px;" />
</td>
</tr>
</table>
和模型:
var ServerViewModel = function () {
// Data
var self = this;
self.IsReadOnly = ko.observable(true); // the form's input mode
self.btnEditSave = ko.observable("Edit"); // the Edit/Save button text
self.Server = ko.observable({}); // the Server object
// Operations
self.doEditSave = function () {
var flag = self.IsReadOnly();
if (flag) {
// switch to Edit mode
self.btnEditSave("Save");
self.IsReadOnly(false);
}
else {
// will eventually save the form data here...
// switch back to readOnly
self.btnEditSave("Edit");
self.IsReadOnly(true);
}
}
}
一切都按预期切换,除了不显示输入字段。我尝试了各种形式的输入标签的“可见”表达式,但没有任何效果。我错过了什么?