📜  ckeditor 忽略 contenteditable - Javascript (1)

📅  最后修改于: 2023-12-03 14:59:56.213000             🧑  作者: Mango

ckeditor 忽略 contenteditable - Javascript

有时候,您可能在使用 ckeditor 编辑器时想要禁止用户手动编辑属性中的内容。这时,您可以使用以下方法,在编辑器中阻止 contenteditable 属性的编辑。

方法

在初始化 ckeditor 时,需要设置 editor.config.readOnlytrue。这会把 contenteditable 属性从编辑器中删除,从而使编辑器不可编辑。

以下为示例代码:

CKEDITOR.replace( 'editor1', {
    readOnly: true
});

在上面的代码中,editor1 是所需禁用的编辑器的 ID。

返回markdown格式
# ckeditor 忽略 contenteditable - Javascript

有时候,您可能在使用 ckeditor 编辑器时想要禁止用户手动编辑属性中的内容。这时,您可以使用以下方法,在编辑器中阻止 contenteditable 属性的编辑。

## 方法

在初始化 ckeditor 时,需要设置 `editor.config.readOnly` 为 `true`。这会把 `contenteditable` 属性从编辑器中删除,从而使编辑器不可编辑。

以下为示例代码:

\`\`\`javascript
CKEDITOR.replace( 'editor1', {
    readOnly: true
});
\`\`\`

在上面的代码中,\`editor1\` 是所需禁用的编辑器的 ID。