1

CKEditor<br>之后会添加<td>..如何禁用或关闭此功能?

前 :

<td>
<img style="width: 950px; height: 114px;" src="http://www.example.com/uploads/image/Newsletter/Newsletter2.jpg" alt="">
</td>

保存后:

<td>
<br>
<img style="width: 950px; height: 114px;" src="http://www.example.com/uploads/image/Newsletter/Newsletter2.jpg" alt="">
</td>

我的设置:

CKEDITOR.editorConfig = function( config )
{
    // Define changes to default configuration here. For example:
    // config.language = 'fr';
    // config.uiColor = '#AADC6E';
    
    config.toolbar = "MyToolbar";
    config.toolbarCanCollapse = false;
    config.resize_enabled = false;
    config.height = '280';
    config.width = '1100';
    config.enterMode = CKEDITOR.ENTER_P;

CKEditor 版本:3.6.4

4

1 回答 1

-2

快速而肮脏:保存后,我将替换<td><br><td> This behavior is notdocumented,我看不到打开/关闭它的设置

于 2012-12-05T10:08:32.817 回答