我正在使用最新的CKeditor和jQuery adapter。
我已经成功地让它工作,并显示。
但是,由于我是 CKeditor 的新手,如何使用 jQuery 方法传递配置变量?
这就是我所拥有的
$( '#input-content' ).ckeditor('', {
toolbar: 'basic'
});
我认为从我读过的内容来看,第一个参数是一个回调,第二个参数是配置。但这样做并没有改变编辑器。
如何使用 jQuery 适配器使用these config properties等?
答案 0 :(得分:19)
我使用此代码完成了此操作。希望这会有所帮助。
这是html:
<textarea id="txtMessage" class="editor"></textarea>
这是javascript:
try {
var config =
{
height: 180,
width: 515,
linkShowAdvancedTab: false,
scayt_autoStartup: true,
enterMode: Number(2),
toolbar_Full: [['Styles', 'Bold', 'Italic', 'Underline', 'SpellChecker', 'Scayt', '-', 'NumberedList', 'BulletedList'],
['Link', 'Unlink'], ['Undo', 'Redo', '-', 'SelectAll']]
};
$('textarea.editor').ckeditor(config); }
答案 1 :(得分:12)
我通过了一个空函数......
$('textarea#my').ckeditor($.noop, {
property: 'value'
});
答案 2 :(得分:8)
jQuery(function(){
var config = {
toolbar:
[
['Bold', 'Italic', 'Underline', '-', 'NumberedList', 'BulletedList', '-', 'Undo', 'Redo', '-', 'SelectAll'],
['UIColor']
]
};
jQuery('#textAreaElement').ckeditor(config);
});
答案 3 :(得分:2)
var config = {
toolbar:
[
['Source','-','Save','NewPage','Preview','-','Templates'],
['Maximize', 'ShowBlocks','-','About']
],
coreStyles_bold: { element : 'b', overrides : 'strong' }
};
只需添加相应的配置对象,上面我添加了coreStyles_bold,我所做的就是将CK API文档中的“=”更改为“:”
答案 4 :(得分:2)
$(document).ready(function(){
$('.reply').click(
function(event){
// Event click Off Default
event.preventDefault();
// CKEditor
$(function(){
var config = {toolbar:[['Bold', 'Italic', '-', 'Link', 'Unlink']]};
//<?php /*echo"var config = {toolbar:[['Bold', 'Italic', '-', 'Link', 'Unlink']]};" ;*/ ?>
// DOM class = "cke"
$('textarea.cke').ckeditor(function(){}, config);
});
return false;
});
});
答案 5 :(得分:0)
不确定这是否是CKEDITOR的新功能,但只是想分享我的解决方案(以防现在有人帮助任何人):
$("textarea.youreditor").ckeditor
(
{
customConfig: "/path/to/custom/config.js"
}
);
...我的配置看起来像这样(只需复制默认的config.js):
CKEDITOR.editorConfig = function(config)
{
config.toolbar_Full =
[
{ name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] },
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'] },
{ name: 'insert', items : [ 'Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe' ] },
{ name: 'colors', items : [ 'TextColor','BGColor' ] }
];
};
答案 6 :(得分:0)
有一份官方文档,请参阅jQuery Adapter
ckeditor()方法接受两个可选参数:
$( 'textarea' ).ckeditor({ uiColor: '#9AB8F3' });