如何获取CKEditor UI元素并将其转换为JQuery对象?

时间:2012-01-11 05:53:38

标签: javascript jquery ckeditor

CKEDITOR.dialog.add('quoteDialog',function(editor){
return{  //... ... code here
    onShow:function(){
        var dialog = this;
        var bg_box = dialog.getContentElement('general','color_box');
        $(bg_box)???
    }
}
});

好的,我收到了元素!但是如何将其转换为JQuery对象?

2 个答案:

答案 0 :(得分:0)

我找到了解决问题的方法:

$(bg_box ._ inputId。);

答案 1 :(得分:0)

您可以将CKEditor对象(或对象数组)更改为JQuery对象(或对象数组)

参见示例代码

CKEditor对象列表: - var elmnts= CKEDITOR.instances.editor1.editable().find('img');

JQuery对象列表: - var elmnts= CKEDITOR.instances.editor1.editable().find('img').$;