Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已将 tinymce 架构更改为 HTML5。当我插入一个header或任何其他 HTML5 元素时,我无法从中写出一些东西。
header
无法在外部单击、按 Enter 甚至无法使用键盘键(向上、向下、...等)。
唯一的方法是打开html代码并将我的代码手动放在之前或之后,这是不理智的。
html
我自己发现的,
end_container_on_empty_block初始化 TinyMCE 时必须设置为 true:
end_container_on_empty_block
tinyMCE.init({ end_container_on_empty_block: true });
然后双击Enter意志解决问题。
Enter
编辑 按主页,然后双击Enter将允许您插入之前的任何内容。