我在这里看到了很多帖子,但是每个帖子都太旧了,并且与 tinyMCE 4.x 无关
此时我只是隐藏工具栏和菜单栏,但我仍然可以删除文本等等......
这就是我将其设为只读的方式。
tinymce.init({
selector: "#id",
readonly: true,
toolbar: false,
menubar: false,
statusbar: false
// more inits...
});
您可能需要调整样式以修复编辑器边框。
这需要我一些时间来研究如何在只读模式下制作 tinymce。
这里的关键点设置readonly
为1
or 0
, not true
or false
。例如这里是我的初始化代码:
tinymce.init({
selector: "#html-textarea",
menubar: false,
statusbar: false,
resize: "both",
plugins: [
"textcolor image link preview code table media noneditable"
],
readonly: status, // **status hold value 0 or 1, NOT true or false**
toolbar: 'preview | undo redo | removeformat | cut copy paste | formatselect fontselect fontsizeselect | forecolor backcolor | bold italic underline strikethrough subscript superscript | alignleft aligncenter alignright alignjustify | link unlink image media | code table | bullist numlist | outdent indent blockquote'
});
如通过此链接https://www.tiny.cloud/docs-3x/reference/configuration/Configuration3x@readonly/看到的 TinyMCE 文档中所述,只读属性应设置为“1”而不是“真”。
// Move focus to specific element
tinyMCE.init({
theme : "advanced",
readonly : 1
});
希望这可以帮助