解决方法
看起来jeditable在直接用于初始化可编辑部分的DOM元素上显示“取消”方法.
例如:
// A paragraph with jeditable initialized like this: $('p#editable').editable(); // Could be canceled with: $('p#editable')[0].reset();
另一个选择是触发取消按钮本身上的“点击”事件.
为了做到这一点,我们可以为取消按钮指定具体的html.
$('p#editable').editable({ cancel: '<button class="cancel_button">cancel</button>' }); // And to cancel: $('p#editable').find('.cancel_button').click();