我一直在玩jQuery In Place Editor,我无法弄清楚如何正确禁用它。下面是我到目前为止的代码。
我正在使用jQuery toggle
方法来初始化和终止链接列表上的插件功能。下面的代码中有一些额外的位可能与我的问题无关,但为了以防万一我将它们留在那里。
问题是下面的代码按照我预期的前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
;
});
答案 0 :(得分:0)
每次用户点击时,都会执行传递给切换的第一个函数。
答案 1 :(得分: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;
}
答案 2 :(得分:-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
});