如何在按Enter键时将<p> </p>标签更改为<br/>标签

时间:2014-10-20 09:02:10

标签: froala

Froala编辑器中,按&#34;输入&#34;关闭</p>标记并打开一个新标记。

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

3 个答案:

答案 0 :(得分:4)

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

答案 1 :(得分:0)

e for event 
                if (e.which == 13) {

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

                    return false;
                }
   it insert two br insteda of p       

答案 2 :(得分: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>

链接是[在此处输入链接描述] [用br或div标签替换Froala段落]