我正在尝试构建就地编辑功能,但我想用外部链接调用元素。假设我正在使用编辑构建右键菜单。
感谢您的帮助
答案 0 :(得分:3)
如果我理解你想要什么,你想要做以下事情:
如果是这种情况,你可以这样做:
$('button').click(function() { // an action to trigger editing
$('#editable').editable('', {
// when the editing is done, make this element uneditable
onreset: function() { $(this).parent().editable('destroy'); }
})
// pseudo click the editable element, so it is in the "editable" mode
.click();
});