Turn off enclosing lt;pgt; tags in CKEditor 3.0(关闭封闭 lt;pgt;CKEditor 3.0 中的标签)
问题描述
是否有可能关闭所有书面内容的自动封闭在<p></p>在 CKEditor 3.x 中?
Is there a possibility to turn off the automatic enclosing of all written content within <p></p> in CKEditor 3.x?
我试过了
CKEDITOR.config.enterMode = CKEDITOR.ENTER_BR;
但这只是将内联换行符更改为 <br/>同时离开封闭的段落.
but this just changes the inline linebreaks to <br /> while leaving the enclosing paragraph.
当前编写测试"会产生此输出
Currently writing "Test" produces this output
<p>
Test</p>
但我希望它是简单的
Test
是否有为此的配置属性,或者是否有其他内联编辑器更适合此?
Is there a configuration property for this or would another inline editor to be better suited for this?
推荐答案
CKEDITOR.config.enterMode = CKEDITOR.ENTER_BR;
- 这对我来说非常适合.您是否尝试过清除浏览器缓存 - 这有时是个问题.
您也可以使用 jQuery 适配器查看它:
CKEDITOR.config.enterMode = CKEDITOR.ENTER_BR;
- this works perfectly for me.
Have you tried clearing your browser cache - this is an issue sometimes.
You can also check it out with the jQuery adapter:
<script type="text/javascript" src="/js/ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="/js/ckeditor/adapters/jquery.js"></script>
<script type="text/javascript">
$(function() {
$('#your_textarea').ckeditor({
toolbar: 'Full',
enterMode : CKEDITOR.ENTER_BR,
shiftEnterMode: CKEDITOR.ENTER_P
});
});
</script>
根据@Tomkay 的评论更新:
从 CKEditor 3.6 版开始,您可以配置是否要使用 <p></p>
等标签自动包装内联内容.这是正确的设置:
Since version 3.6 of CKEditor you can configure if you want inline content to be automatically wrapped with tags like <p></p>
. This is the correct setting:
CKEDITOR.config.autoParagraph = false;
来源:http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.autoParagraph
这篇关于关闭封闭 <p>CKEditor 3.0 中的标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:关闭封闭 <p>CKEditor 3.0 中的标签
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01