2

Froala编辑器中,按“enter”关闭</p>标签并打开一个新标签。

是否可以更改行为以插入<br>标签而不关闭<p>

4

3 回答 3

4

您必须更改输入选项http://editor.froala.com/options#enter

于 2014-10-20T18:50:16.220 回答
0
e for event 
                if (e.which == 13) {

                    document.execCommand('insertHTML', false, '<br><br>');

                    return false;
                }
   it insert two br insteda of p       
于 2016-12-23T09:06:26.143 回答
0

这是来自文档,它对我有用:

      <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 标签]

于 2017-07-18T16:34:41.357 回答