解決策を見つけるために多くのWebサイトにアクセスしました。
私のエディタは、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>