我有一个带引导程序的表,可以使用bootstrap-editable进行编辑。
当我点击一个单元格并尝试使用日历更改值时,在成功编辑时,我会$(this).html()
并返回旧值而不是给我新值。
$('TABLE TD A').editable({
type: 'date',
name: 'test',
language: "es-ES",
pk: $(this).attr("pk"),
format: 'dd/mm/yyyy',
url: '/post',
title: 'Cambiar Fecha',
success: function (e) {
$(this).removeClass("bold");
...
}
});
$.mockjax({
url: '/post',
responseTime: 200
});
我不明白为什么。 somebodey可以告诉我一些不得不纠正吗?
答案 0 :(得分:0)
好吧,我解决了,
很好奇解决方案。
我在成功函数中添加了一个新参数,如:
...
success: function (e, newValue) {
...
}
...
在newValue中,我有我想要的价值。
好奇的解决方案。我不明白为什么e参数为空,他们使用第二个参数来做。