2

我使用 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 
}

我需要拦截取消事件 - 最好的方法是什么

4

1 回答 1

2

使用这个这个

$("#editable_text").editable(submitEdit, { 
    //...
    onreset: jeditableReset,
    //...
});

function jeditableReset(settings, original) {
   // whatever you need to do here
}
于 2013-01-30T13:51:34.253 回答