gpt4 book ai didi

javascript - meteor JS : Input value in a table is displayed twice

转载 作者:行者123 更新时间:2023-12-02 16:10:38 25 4
gpt4 key购买 nike

我在 MeteorJS 中遇到了将值插入可编辑表的问题。每当我插入一个值并调用模糊事件处理程序(对数据库执行更新操作)时,表单元格中的值就会显示两次。

我有可用的代码:https://github.com/jeffrey-effendy/sudolver

感谢您的帮助!

最佳答案

我在 contenteditable 字段中经历过类似的事情。认为其原因是因为该值保留在单元格中,但 {{value}} 也添加了一个值,因此它显示了两次。

您可以通过先清除单元格来修复它:

Template.createCell.events({
"blur .cell": function(e) {
var val = $(e.currentTarget).text();
$(e.currentTarget).text('');
Meteor.call("update", this._id, val);
}
});

关于javascript - meteor JS : Input value in a table is displayed twice,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30255427/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com