我正在尝试将文件 url 从外部文件浏览器返回到 CKEditor,但我收到错误消息:
[09:02:18.038] TypeError: A._.filebrowserSe is undefined @ http://www.xxx.pl/yyy/js/ckeditor/ckeditor.js:56
我正在使用这段代码:
window.parent.opener.CKEDITOR.tools.callFunction(number,url);
有谁知道如何解决这个问题?
我正在尝试将文件 url 从外部文件浏览器返回到 CKEditor,但我收到错误消息:
[09:02:18.038] TypeError: A._.filebrowserSe is undefined @ http://www.xxx.pl/yyy/js/ckeditor/ckeditor.js:56
我正在使用这段代码:
window.parent.opener.CKEDITOR.tools.callFunction(number,url);
有谁知道如何解决这个问题?
这是一个答案:如何将自定义文件浏览器/上传器与 CKEditor 集成?
您应该接收名为 CKEditorFuncNum 的 GET 参数。
我在 php 中以这种方式使用它:
window.parent.CKEDITOR.tools.callFunction(<?=intval($_REQUEST['CKEditorFuncNum'])?>, url, message);