在Froala编辑器中,按“enter”关闭</p>
标签并打开一个新标签。
是否可以更改行为以插入<br>
标签而不关闭<p>
?
您必须更改输入选项http://editor.froala.com/options#enter。
e for event
if (e.which == 13) {
document.execCommand('insertHTML', false, '<br><br>');
return false;
}
it insert two br insteda of p
这是来自文档,它对我有用:
<script>
$(function() {
$('div#froala-editor-p').froalaEditor();
$('div#froala-editor-div').froalaEditor({
enter: $.FroalaEditor.ENTER_DIV
});
$('div#froala-editor-br').froalaEditor({
enter: $.FroalaEditor.ENTER_BR
});
});
</script>
链接是[在此处输入链接描述][Froala 段落替换为 br 或 div 标签]