8

我想知道您是否可以停止单击时可编辑的文本?我有一个单独的编辑按钮来使文本可编辑,这是我希望用户能够编辑文本的唯一方法,所以想要关闭点击编辑?

有任何想法吗?

4

2 回答 2

4

Britt is right, add a custom event, and trigger it with a button for example. Here is some code to explain it:

The custom event:

$('#id').editable('http://www.example.com/save.php', {
    event : 'custom_event'
});

And the trigger:

<button onclick="$('#id').trigger('custom_event');">click to trigger</button>
于 2010-12-15T01:23:54.457 回答
2

创建 jEditable 字段时可以使用 未记录的选项事件。

(它实际上并没有被记录在案,但它只是在 jEditable 文档页面上的一句话中提到的。)

您可以使用它来更改使字段可编辑的事件。您可以使用任何 jquery 事件,甚至是自定义事件。

例如,在我的项目中,我创建了一个 edit.mode 事件,该事件使该字段可编辑,然后我可以使用按钮、热键等任何我喜欢的方式触发该事件。

于 2010-08-13T19:30:58.223 回答