CKEditor在Internet Explorer中显示为灰色

时间:2013-03-20 22:00:39

标签: javascript jquery editor ckfinder

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

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

更新编辑器可能是一个解决方案,但我花了一些时间与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>

2 个答案:

答案 0 :(得分:0)

尝试禁用加载项,如果问题已解决,请逐个启用加载项以找到导致问题的加载项。

答案 1 :(得分:0)

基于对前一个答案的评论,问题出在IE10上,对吧?听起来像版本问题。 CKFinder 2.2.2不支持IE10,因此您可以尝试更新CKF。

如果你在问题:)中包含CKFinder,CKEditor和Browser版本会有所帮助。

它也可能是配置或一般JS问题 - 你有一个JSfiddle或我们可以检查的其他链接吗?另外,如果您检查了IE10的开发人员工具报告的内容,那里很可能会出现信息错误。