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 に答える