插件 \ noneditable 不可编辑元素

此页更新时间:2019-04-07 21:30

此页英文文档:https://www.tiny.cloud/docs/plugins/noneditable/

将带有 mceNonEditable类的内容设为不可编辑(但可以删掉)。该插件提供的特性比较适合作为模板使用。

该插件不提供工具栏按钮或菜单项。

tinymce.init({
    selector: '#tinydemo',
    plugins: "noneditable",
});

额外设置

noneditable_editable_class 定义可编辑元素的类名

设置可编辑元素的类名,默认是mceEditable,可改写成任意类。

取值: String

默认: "mceEditable"

noneditable_editable_class: "mceEditable"

noneditable_noneditable_class 定义不可编辑元素的类名

设置不可编辑元素的类名,默认是mceNonEditable,可改写成任意类。

取值: String

默认: "mceNonEditable"

noneditable_editable_class: "mceNonEditable"

noneditable_regexp

使用正则匹配哪些内容是不可编辑的。该正则需使用全局匹配以便转换文档中的所有匹配项。

noneditable_regexp: /<custom-token>/g

下一节:pagebreak 插入分页符