2

我一直在玩jQuery In Place Editor,但我不知道如何正确禁用它。以下是我到目前为止的代码。

我正在使用 jQuerytoggle方法来初始化和终止链接列表上的插件功能。下面的代码中有一些额外的位可能与我的问题无关,但我将它们留在那里以防万一。

问题是下面的代码在前 2 次点击时按我预期的方式工作(即第一次点击 - 启用 editInPlace 插件,第二次点击 - 禁用它),但它不会在第 3 次点击时重新启用就地编辑功能

任何想法为什么?

(shoppingList.editButton).toggle(function() {
            (shoppingList.editButton).attr('value', 'Finish editing');
            (shoppingList.$ingrLinks).unbind('click', shoppingList.ingredients) // disable some functionality on links
                                     .addClass('inplace-editor') // add class to links I want to be editable
                                     .removeAttr('href') // make links unclickable
                                     .editInPlace({ // editInPlace plugin initialized
                                         url: 'http://localhost:8000/edit-ingredient/',
                                         show_buttons: true
                                     });

        }, function() {
            (shoppingList.editButton).attr('value', 'Edit items');
            (shoppingList.$ingrLinks).bind('click', shoppingList.ingredients) // bring back the functionality previously removed
                                     .removeClass('inplace-editor') // remove the class from links that were editable
                                     .attr('href', '#') // make the links clickable again
                                     .unbind('.editInPlace') // remove editInPlace plugin functionality
                                     ;
        });
4

3 回答 3

0

用链接的克隆替换链接。当使用$.clone()参数 false 时,所有事件处理程序都将从克隆中删除。

第二个功能(保留第一个功能):

 function() {
            (shoppingList.editButton).attr('value', 'Edit items');
              //close the editor(s) when still active
            $('.inplace_cancel',shoppingList.$ingrLinks).trigger('click');
              //create clones of the items
            var clones=(shoppingList.$ingrLinks).clone(false)
                        .each(function(i,o) {
                          //restore the original behaviour
                            $(o)//o is a clone 
                              .bind('click', shoppingList.ingredients) 
                              .removeClass('inplace-editor') 
                              .attr('href', '#')
                                //replace the link inside the document with it's clone
                              .replaceAll($(shoppingList.$ingrLinks[i]));            
            });
            //assign the clones to shoppingList.$ingrLinks
            shoppingList.$ingrLinks=clones;
        } 
于 2012-11-13T23:17:20.910 回答
0

每次用户单击时,都会执行传递给 toggle 的第一个函数。

于 2012-11-13T21:41:36.387 回答
-2

找到了一个可行的解决方案:

$('input[name="edit-items"]').toggle(function() {
    $(this).attr('value', 'Finish editing');
    (shoppingList.$ingrLinks).unbind('click', shoppingList.ingredients) // disable highlighting items
                             .removeAttr('href');
    $('.editme').editable("enable");
    $('.editme').editable('http://localhost:8000/edit-ingredient/');
}, function() {
    $(this).attr('value', 'Edit item');
    (shoppingList.$ingrLinks).attr('href', '#');
    $('.editme').editable("disable");
    (shoppingList.$ingrLinks).bind('click', shoppingList.ingredients) // re-enable highlighting items

});
于 2012-11-14T21:03:34.280 回答