我正在尝试在 CKEditor 工具栏上创建一个自定义按钮(插件),单击该按钮将在新窗口中打开一个预设 URL - 任何人都可以提供一些帮助,这是我迄今为止在我的 plugin.js 中得到的文件。
我基本上只想说,一旦单击此按钮,就转到新窗口中的 URL。有任何想法吗?
CKEDITOR.plugins.add('inserthtml', {
requires: ['dialog'],
lang : ['en'],
init:function(a) {
var b="inserthtml";
var c=a.addCommand(b,new CKEDITOR.dialogCommand(b));
c.modes={wysiwyg:1,source:0};
c.canUndo=false;
a.ui.addButton("inserthtml",{
label:a.lang.inserthtml.title,
command:b,
icon:this.path+"inserthtml.gif"
});
CKEDITOR.dialog.addIframe(b, b, 'http://pixlr.com/express', 800, 640 )}
});
我在 Firebug 中遇到的错误
CKEDITOR.dialog.addIframe is not a function
CKEDITOR.dialog.addIframe(b, b, 'http://pixlr.com/express', 800, 640 )}