我不明白为什么,但是当我用ckeditor打开elfinder时,我只有一个白色的弹出页面。我使用的是最新版本的ckeditor。 我的代码比我使用。
我的配置:elfinder.html
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div style="background: green; width: 100px; height: 100px; position:absolute;" id="elem">
</div>
我的配置连接器.minimal.php
<script type="text/javascript" charset="utf-8">
function getUrlParam(paramName) {
var reParam = new RegExp('(?:[\?&]|&)' + paramName + '=([^&]+)', 'i') ;
var match = window.location.search.match(reParam) ;
return (match && match.length > 1) ? match[1] : '' ;
}
$().ready(function() {
var funcNum = getUrlParam('CKEditorFuncNum');
var elf = $('#elFinder').elFinder({
url : 'php/connector.minimal.php', // connector URL (REQUIRED)
getFileCallback : function(file) {
window.opener.CKEDITOR.tools.callFunction(funcNum, file.url);
elf.destroy();
window.close();
},
resizable: false,
}).elFinder('instance');
});