对于Twitter Bootstrap X Editable(https://vitalets.github.io/x-editable/docs.html),有成功和错误的回调。但取消没有任何意义。有没有办法监听特定可编辑的取消事件?
答案 0 :(得分:5)
想出来:
$('#element', this.$e).editable({
type: 'text',
toggle: 'manual',
success: function(response, newValue) {
//some action
}.bind(this)
}).on('hidden', function(e, reason) {
if (reason == "cancel") {
//some action
}
});
您可以在“隐藏”上定义一个监听器,并检查取消或提交或手动的原因。