我正在使用TinyMce从数据库插入/编辑文本,但我不知道为什么<br />
缺少。即使我按ENTER或SHIFT + ENTER也没有换行。
TinyMce init:
tinyMCE.init({
mode : "textareas",
theme : "simple",
force_p_newlines : false,
force_br_newlines : true,
convert_newlines_to_brs : false
});
答案 0 :(得分:13)
根据TinyMCE documentation for force_br_newlines
:
从3.5开始,不推荐使用此选项使用forced_root_blocks:false来控制p vs br行为。
从版本3.0a1开始,默认情况下启用forced_root_block
。 The documentation also says如果您停用此选项,则Enter会生成<br />
,而Shift + Enter会生成<p>
。
试试这个:
tinyMCE.init({
mode : "textareas",
theme : "simple",
forced_root_block : false,
});