1

私は現在、PHPとjQueryで画像ブラウザを開発しています。新しいウィンドウ(ダイアログボックスではない)で画像ブラウザを開くカスタムボタンプラグインを作成することができました:

CKEDITOR.plugins.add('imgbrowser',
{
    init: function(editor)
    {
        var pluginName = 'imgbrowser';
        editor.ui.addButton('Imgbrowser',
            {
                label: 'Image browser',
                command: pluginName,
                click: function (editor) { window.open('/publish/browser/index.php','Image Browser','width=900,height=600'); }
            });
    }
});

コールバック関数を有効にする方法と、選択した画像をエディターに追加できるようにするためにこれをどのように使用するかを知っている人はいますか?

4

1 に答える 1

1

Ok。答えは次のとおりです。

親ウィンドウには、次の関数があります。

function InsertHTML(file_path)
        {
            // Get the editor instance that we want to interact with.
            var oEditor = CKEDITOR.instances.page_content;
            var value = file_path;

            // Check the active editing mode.
            if ( oEditor.mode == 'wysiwyg' )
            {
                // Insert the desired HTML.
                oEditor.insertHtml( '<img src="' + value + '" />' );
            }
            else
                alert( 'You must be on WYSIWYG mode!' );
        }

page_contentは私のtextareaのIDです。

ポップアップウィンドウには、次の機能があります。

function sendToParent(file_path) {
    window.opener.InsertHTML(file_path);
}


echo "<input type='button' value='Insert image' onclick='sendToParent(\"".$img_element."\")' />"
于 2010-07-28T07:20:50.027 に答える