有没有办法在外部呼叫的可调整区域上调用“取消”? (而不是单击取消) - 基本上关闭textarea。
答案 0 :(得分:15)
看起来像jeditable直接在用于初始化可编辑部分的DOM元素上公开“取消”的方法。
例如:
// A paragraph with jeditable initialized like this:
$('p#editable').editable();
// Could be canceled with:
$('p#editable')[0].reset();
另一种选择是触发取消按钮本身的“点击”事件。 为此,我们可以为取消按钮指定特定的html。
$('p#editable').editable({
cancel: '<button class="cancel_button">cancel</button>'
});
// And to cancel:
$('p#editable').find('.cancel_button').click();
答案 1 :(得分:0)
您也可以这样做:
('.your_jedit_class').each(function(){
this.reset()
})