我使用 Mike Tuupola 的 jQuery jEditable 如下:
function wireupTagCategoryInPlaceEditing() {
$('.category-label').editable(submitTagCategoryEdit, {
event: 'tagcategoryedit', // conditionally triggered in wireupTagCategoryClick()
type: 'text',
submit: ' Ok ',
cancel: 'Cancel',
cssclass: 'tagcategory-inplace-edit'
});
}
function submitTagCategoryEdit(value, settings) {
//handle the edit
}
我需要拦截取消事件 - 最好的方法是什么