0

我访问了很多网站以找到解决方案。

我的编辑器几乎可以在除 Internet Explorer 之外的所有浏览器中使用。在 Internet Explorer 中,更改内容的空间(文本区域)没有显示,编辑器的其余部分是可见的。有谁知道解决方案?我没有在互联网上找到它。

更新编辑器可能是一个解决方案,但是我花了一段时间将它与ckfinder一起配置,所以我担心更新后ckfinder无法正常工作。

编辑几个月前工作,但我有几个月没有在网站上工作。

<textarea id="textarea" name='text' class='editor'></textarea>

显示我的编辑器。

<script>
$(document).ready(function(){
             $('textarea.editor').ckeditor( 
             function() { 
                 /* callback code */ 
                  }, 
                {   

                   language : 'nl',
                   uiColor : '#e9eaee',
                   toolbarStartupExpanded : false,
                      toolbar :
                            [
                                    { name: 'tools', items : [ 'Maximize', 'ShowBlocks', 'Source'] },{ name: 'document', items : ['DocProps','Preview','Print','-','Templates' ] },
                         { name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },
                              { name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','SpellChecker', 'Scayt' ] },
                            '/',
                            { name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] },
                              { name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl' ] },
                            { name: 'links', items : [ 'Link','Unlink','Anchor' ] },
                         '/',
                            { name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] },
                            { name: 'colors', items : [ 'TextColor','BGColor' ] },
                           { name: 'insert', items : [ 'Image','Table','HorizontalRule','Smiley','SpecialChar' ] }
                            ],
                      height: '225',
                      extraPlugins : 'tableresize'

                } );
            });
</script>
4

2 回答 2

0

尝试禁用您的附加组件,如果问题解决了,请逐个启用附加组件以查找导致问题的附加组件。

于 2013-03-20T22:13:45.700 回答
0

根据上一个答案的评论,问题出在IE10上,对吗?好像是版本问题。CKFinder 2.2.2 不支持 IE10,因此您可以尝试更新 CKF。

如果您在问题中包含 CKFinder、CKEditor 和浏览器版本,将会有所帮助:)。

这也可能是配置或一般 JS 问题 - 你有 JSfiddle 或我们可以查看的其他链接吗?此外,您是否检查了 IE10 的开发人员工具报告的内容,那里很可能存在信息错误。

于 2013-10-23T10:55:52.203 回答