在我的应用程序中,我使用的是 Tinymce。这是我的问题。
方案 1
1)我有这样风格的段落
<div class="p">Paragraph with some content.<!--p--></div>
当我将光标放在段落末尾并按回车键时,它将像这样创建
<div class="p">Paragraph with some content.<!--p--></div>
<div class="p"></div>
但我需要这样
<div class="p"><!--p--></div>
方案 2
1)我有这样风格的段落
<div class="p">Paragraph with some content.<!--p--></div>
当我将光标放在段落的中间并按回车键时,它将像这样创建
<div class="p">Paragraph with <!--p--></div><div class"p">some content.<!--p--></div>
为了获得这个我正在使用这样的功能
ed.onKeyPress.addToTop(function(ed, e) {
if ((e.charCode == 13 || e.keyCode == 13)) {
tinyMCE.execInstanceCommand('abb_ifr',"mceInsertContent",true,'<!--p--></div>');
}
});
我需要实现场景 1。我如何在 Tinymce 中做到这一点。我需要更改核心文件中的任何内容吗?请给我提意见。