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。它工作得很好。我遇到了一个问题,当用户在编辑器中输入内容并按下回车键时,编辑器会插入一个空白的额外行。我通过使用force_p_newlines: false它来防止这种情况在 Chrome 中完美运行,但在 IE9 中却不行。
force_p_newlines: false
关于在编辑器的初始化代码中还要写什么的任何想法?我也用过force_br_newlines : false,但也没用。
force_br_newlines : false
通过这样做,我得到了这个工作。(在intit代码中添加这些行tinymce)
intit
tinymce
forced_root_block: false, force_br_newlines : true, force_p_newlines: false,