http://gw.ablueman.co.uk/tabbednotepad.phpCKEDITOR.replace( 'editor1', 'editor2',{
我有3個文本域的CKEditor,這三個都是一樣的,但是從主一個或類相當不同。
如果我把如果我嘗試使用CKEDITOR.replace('editor1','editor2','editor3'{0}),它會正常工作,取代它們,但忽略{幾乎和類一樣。
我只是格式化CKEDITOR.replace('editor1' ,'editor2',{});不正確的是,我需要所有三個使用相同的替換。
繼承人的代碼:
<form name="title" method="post" action="<?php echo htmlentities($_SERVER['PHP_SELF']);?>">
<textarea class="ckeditor" id="editor3" name="editor3" rows="200"><?php echo $editor3;?></textarea>
<input id="tabtitle1" name="tabtitle1" size="30" placeholder="Tab Title.." />
<input type="submit" value="Submit" >
</form>
<script type="text/javascript">
CKEDITOR.replace('editor1', {
height: '600px',
enterMode: CKEDITOR.ENTER_BR,
toolbar:
[ { name: 'document', groups: [ 'document', 'doctools' ], items: [ 'Save', 'NewPage', 'Preview', 'Print', '-', 'Templates' ] },
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ], items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl' ] }, '/',
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] },
{ name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] }, { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ], items: [ 'Find', 'Replace', '-', 'SelectAll', '-', 'Scayt' ] },
{ name: 'insert', items: [ 'Image', 'Table', 'HorizontalRule', 'SpecialChar', 'PageBreak', 'Iframe', 'Syntaxhighlight' ] }, '/',
{ name: 'styles', items: [ 'Format', 'Font', 'FontSize' ] },
{ name: 'colors', items: [ 'TextColor', 'BGColor' ] },
{ name: 'others', groups: [ 'mode' ], items: [ 'Source', 'searchCode', 'autoFormat', 'CommentSelectedRange', 'UncommentSelectedRange', 'AutoComplete', '-', 'ShowBlocks' ] },
{ name: 'tools', items: [ 'Maximize' ] },
]});
</script>
[編輯]僅供參考,我想CKEDITOR.replace([ 'editor1', 'editor2'], 這個沒有工作或者
看看它是如何在這裏完成:http://ckeditor.com/最新的/ samples/tabindex.html(該頁面包含3個不同的實例在同一頁面上,而不是像你的標籤,但想法是相同的)。 – bodi0
不使用該類。你不能輕易地編輯課程,以免實際解決問題。這就是爲什麼我需要使用CKEDITOR.replace而不是類。除非有一種簡單的方法,你知道使用ckeditor類來更改工具欄。 – ablueman