我已经在网上搜索并尝试阅读手册,但未能找到问题的答案
我有这个可编辑的网格与淘汰赛js:
http://jsfiddle.net/peterf/8FMPc/light/
<input type="text" class="edit" data-bind="value: name.editValue, visible: $root.isItemEditing($data)" />
<label class="read" data-bind="text: name, visible: !$root.isItemEditing($data)" />
我想要做的是,在点击“添加新水果”按钮并插入水果名称后,通过控制台从Web开发人员工具/代码中获取插入值。
英语不是我的母语;请原谅输入错误。
答案 0 :(得分:3)
这是你正在寻找的吗?
http://jsfiddle.net/8FMPc/305/
self.applyFruit = function (fruit) {
// commit the edit transaction
self.editTransaction.notifySubscribers(null, "commit");
console.log(fruit.name());
// hides the edit fields
self.editingItem(null);
};