我是MVC的新手,无法复制此问题。我正在尝试更改按钮的文本。
小提琴here
查看
<input type="button" data-bind="click: $root.save" value="Save" />
ViewModal
function AppViewModel() {
var self = this;
self.save = function () {
alert('me');
//change button text here
}
}
ko.applyBindings(new AppViewModel());
答案 0 :(得分:3)
你需要浏览文档但是如果你的问题很简单,希望这会引导你试图学习淘汰而不是要求其他人为你编写代码 -
<input data-bind="attr: { 'value': someText }" type="button"/>