Bas*_*abi 4 html javascript asp.net jquery ckeditor
嗨,我已经在我的asp.net和vb.net Web应用程序中实现了ckeditor.经过多次努力,其工作正常.
但它在每次保存后添加了大量的换行符和段落(特别是从word文件中复制和粘贴).编辑<br/>在提交页面后将html 放在一边.
如果有一个换行符,则添加4个换行符.如果我提交
xxx<br>yyy
Run Code Online (Sandbox Code Playgroud)
提交后,它正在成为
xxx<br/><br/><br/><br/<br/><br/>yyy
Run Code Online (Sandbox Code Playgroud)
为了澄清第一次复制和粘贴时我们没有看到这种行为,只会在后续的编辑/保存中看到问题.
请告诉我如何处理.因此,在保存表单后不会添加额外的换行符和段落.
以下是我实施ckeditor所遵循的步骤.
1.从http://ckeditor.com/download链接下载ckeditor .我正在使用完整的包
2.复制项目文件夹下的整个文件夹.
3.在母版页中添加以下行以添加ckeditor的引用
<script src="/ckeditor/ckeditor.js" type="text/javascript"></script>
<script src="/ckeditor/adapters/jquery.js" type="text/javascript"></script>
<script src="/ckeditor/ckeditor_custom.js" type="text/javascript"></script>
Run Code Online (Sandbox Code Playgroud)
4.更改了特定文本区域的类
<textarea runat="server" id="txtDescription" name="txtDescription" class="ckeditor" style="width: 98%; height: 250px;"></textarea>
Run Code Online (Sandbox Code Playgroud)
5.在内容页面底部添加了以下javascript函数
$('#' + '<%= btnSave.ClientID%>').mousedown(function () {
for (var i in CKEDITOR.instances) {
CKEDITOR.instances[i].updateElement();
}
});
Run Code Online (Sandbox Code Playgroud)
而已.代码文件中没有任何变化
这里btn.save是提交数据的按钮
为了清楚地描述问题,我将在下面提供案例情况.
假设我想从一个word文件中复制padte下面的文本.
工作日志•第1周:简介o发现网站的位置o开始熟悉网站和门户网站.
将它粘贴到ck编辑器后,html源代码如下
<p><strong>Working Log</strong></p>
<ol style="list-style-type:lower-roman">
<li>1<sup>st</sup> Week : Introduction
<ul style="list-style-type:circle">
<li>Discovered the location of the website</li>
<li>Started familiarise with the websites and portal.</li>
</ul>
</li>
</ol>
Run Code Online (Sandbox Code Playgroud)
但是当我保存表单并再次打开它时,源代码就变成了这样
<p><strong>Working Log</strong></p>
<p> </p>
<p> </p>
<ol style="list-style-type:lower-roman"><br />
<li>1<sup>st</sup> Week : Introduction<br />
<ul style="list-style-type:circle"><br />
<li>Discovered the location of the website</li>
<br />
<li>Started familiarise with the websites and portal.</li>
<br />
<br />
</ul>
</li>
<br />
<br />
</ol>
<p> </p>
<p> </p>
Run Code Online (Sandbox Code Playgroud)
每次提交表单后,换行符和段落都会翻倍和三倍.
让我发疯 请帮助我如何处理这种情况.
-----------------为什么我的问题与此链接中提出的问题有所不同在CKEditor中添加<p>时删除不需要的换行符 ---------- -------
该链接中提出的问题并未解释所有细节.在我的问题中,当我能看到这个问题时,我已经清楚地解释了 如果他从word文档中复制和发送文本,或者他使用html标签在编辑器中格式化文本,则该人在上述链接中询问该问题.我已经提到了每一个细节,以便回答这个问题的人变得容易.
问题也不同.上述链接中的问题仅涉及 <p>缩进替代.而在我的情况下,每次保存文档时,每个换行符<br>和段落<p>都会加倍.我正在从word文档复制文本,并在我的问题中提到它.我在上面提到的链接中没有找到问题的任何细节.
不同编码器的情况不同.该人问这个问题没有解释他的编码环境是什么.我已经在Vb.Net和基于ASP.net的Web应用程序中实现了CKEditor,我在我的问题中提到过.我还提到了我在应用程序中安装编辑器的每个步骤.但在链接中提出问题的人没有提供任何细节.同样尝试在他的问题中给出的解决方案并没有解决我的问题.所以我在我的问题中包含了所有细节.我的解决方案也不同.
上述链接中给出的答案并没有解决我的问题.我必须将每个规则都设置为假,以摆脱问题.而在上述链接的答案中,两条规则被设置为True.CKEDITOR.editorConfig = function (config) {在链接中提到的问题的答案中也没有提到该功能.因此,对该链接提出的问题对我没有帮助.
我通过在config.js文件中添加以下代码行来解决了这个问题.
CKEDITOR.editorConfig = function (config) {
// Define changes to default configuration here. For example:
// config.language = 'fr';
// config.uiColor = '#AADC6E';
CKEDITOR.on('instanceReady', function (ev) {
var writer = ev.editor.dataProcessor.writer;
// The character sequence to use for every indentation step.
writer.indentationChars = ' ';
var dtd = CKEDITOR.dtd;
// Elements taken as an example are: block-level elements (div or p), list items (li, dd), and table elements (td, tbody).
for (var e in CKEDITOR.tools.extend({}, dtd.$block, dtd.$listItem, dtd.$tableContent)) {
ev.editor.dataProcessor.writer.setRules(e, {
// Indicates that an element creates indentation on line breaks that it contains.
indent: false,
// Inserts a line break before a tag.
breakBeforeOpen: false,
// Inserts a line break after a tag.
breakAfterOpen: false,
// Inserts a line break before the closing tag.
breakBeforeClose: false,
// Inserts a line break after the closing tag.
breakAfterClose: false
});
}
for (var e in CKEDITOR.tools.extend({}, dtd.$list, dtd.$listItem, dtd.$tableContent)) {
ev.editor.dataProcessor.writer.setRules(e, {
indent: true,
});
}
});
}
Run Code Online (Sandbox Code Playgroud)
如果有人像我一样面临同样的问题,只需复制上面的代码并将其粘贴到ckeditor文件夹中的config.js文件中.
谢谢你的回答.你一直非常乐于助人
你可以通过以下方式避免这种情况:
config.autoParagraph = false;
Run Code Online (Sandbox Code Playgroud)
或者
config.enterMode = CKEDITOR.ENTER_BR;
Run Code Online (Sandbox Code Playgroud)
或者
CKEDITOR.on('txtDescription', function (ev) {
ev.editor.dataProcessor.writer.setRules('br',
{
indent: false,
breakBeforeOpen: false,
breakAfterOpen: false,
breakBeforeClose: false,
breakAfterClose: false
});
});
config.enterMode = CKEDITOR.ENTER_BR;
config.shiftEnterMode = CKEDITOR.ENTER_BR;
Run Code Online (Sandbox Code Playgroud)
有关更多信息,请参阅CKEditor 中的输出格式
| 归档时间: |
|
| 查看次数: |
7971 次 |
| 最近记录: |