0

我正在尝试在 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 )}
4

1 回答 1

1

不要使用具有无意义变量名的压缩文件,请遵循本教程:http ://docs.cksource.com/CKEditor_3.x/Tutorials/Timestamp_Plugin并替换该行

editor.insertHtml( 'The current date and time is: <em>' + timestamp.toString() + '</em>' );

随着您的呼叫打开一个窗口:

window.open('http://pixlr.com/express');
于 2012-04-19T16:48:05.070 回答