我创建了调用外部弹出窗口的插件:
exec : function( editor )
{
window.open('index.php?mod=xxxx','Name popup','width=900,height=600');
}
那部分效果很好。如何将数据发送回CKeditor?我想用 jquery 在 CKeditor 的开启器实例的当前位置附加一些 HTML。
我已经尝试过了,但它不起作用:
$('a#clickMe').click(function()
{
window.opener.CKeditor.insertHtml('Bla bla bla');
});