1
我有一個爲我自己的網站開發的文件瀏覽器/上傳器。集成一個動態文件瀏覽器與CKeditor
有沒有辦法讓CKEditor調用一個函數來顯示文件瀏覽器,而不是打開一個帶有url的新窗口。
編輯: 具體而言,我想在頁面上顯示一個div。
我有一個爲我自己的網站開發的文件瀏覽器/上傳器。集成一個動態文件瀏覽器與CKeditor
有沒有辦法讓CKEditor調用一個函數來顯示文件瀏覽器,而不是打開一個帶有url的新窗口。
編輯: 具體而言,我想在頁面上顯示一個div。
那麼,與ckfinder,那麼你可以這樣做。
CKEDITOR.replace("pagebody",
{
filebrowserBrowseUrl :'ckfinder/ckfinder.html',
filebrowserImageBrowseUrl : "ckfinder/ckfinder.html?Type=Images",
filebrowserFlashBrowseUrl : "ckfinder/ckfinder.html?Type=Flash",
filebrowserUploadUrl : "ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files",
filebrowserImageUploadUrl : "ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images",
filebrowserFlashUploadUrl : "ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash"
});
不,這只是讓你打開新窗口。我編輯的問題更清楚。 – Lathan 2011-04-07 13:09:29