在我的Tiny MCE编辑器中,光标是悬停时的指针,应该是文本。当我将鼠标悬停在MCE编辑器上时,我没有获得任何方法或方法将光标更改为文本。编辑的文档也没有给出任何想法。
答案 0 :(得分:2)
你好,光标在 tinymce 的 body 元素悬停时发生变化。所以我在 init 上想到了这个选项:
content_style: "body { min-height: 225px;}"
根据您的 tinymce 窗口高度更改最小高度的大小。
答案 1 :(得分:1)
在tinymce init函数中再添加一个选项
setup : function(ed) {
ed.on("click", function() {
ed.focus();
});
}
现在你的代码会喜欢这个
tinymce.init({
selector: "textarea",
theme: "modern",
width: '100%',
plugins: ["advlist autolink lists link image charmap print preview anchor","searchreplace visualblocks code fullscreen",
"insertdatetime media table contextmenu paste textcolor"
],
toolbar: " bold italic underline | alignleft aligncenter",
setup : function(ed) {
ed.on("click", function() {
ed.focus();
});
}
});