10
マイCKEditorバージョンのコードは、私が編集ボックスの内容を取り、私のjQueryのスクリプトからJSON経由で送信したいCKEditorのコンテンツを取得しますか? - jQueryの
window.onload = function()
{
var editor = CKEDITOR.replace(\'big_info\');
CKEDITOR.config.height = \'330px\';
CKEDITOR.config.toolbar_Full =
[
[\'Source\',\'-\',\'Templates\'],
[\'Maximize\', \'ShowBlocks\'],
[\'Cut\',\'Copy\',\'Paste\',\'PasteText\',\'PasteFromWord\',\'-\',\'SpellChecker\', \'Scayt\'],
[\'Undo\',\'Redo\',\'-\',\'Find\',\'Replace\',\'-\',\'SelectAll\',\'RemoveFormat\'],
[\'TextColor\',\'BGColor\'],
[\'NumberedList\',\'BulletedList\',\'-\',\'Outdent\',\'Indent\',\'Blockquote\'],
\'/\',
[\'Bold\',\'Italic\',\'Underline\',\'Strike\',\'-\'],
[\'Styles\',\'Format\',\'Font\',\'FontSize\'],
[\'JustifyLeft\',\'JustifyCenter\',\'JustifyRight\',\'JustifyBlock\'],
[\'Link\',\'Unlink\',\'Anchor\'],
[\'Image\',\'Flash\',\'Table\',\'HorizontalRule\',\'PageBreak\']
];
CKFinder.SetupCKEditor(editor, { BasePath : \'/javascript/ckfinder/\', RememberLastFolder : false }) ;
};
です。私はそれにどのように行うのか見つけることができません。