在新窗口中将ckeditor内容视为html

时间:2013-09-19 14:10:47

标签: ckeditor

如何在单击按钮时在新模态窗口中将ckeditor内容视为html,该按钮位于编辑器旁边。 下面是html

 <img  src="Image/icons/preview.png" alt="Preview" id="img1" class="preview"  />

                <textarea rows="30" cols="22" id="txtHtmlHead" class="editor"></textarea>

上面的textarea表现为ckeditor。

请帮帮我..

1 个答案:

答案 0 :(得分:0)

您可以使用window.open()一个棘手的url来执行此操作(fiddle):

CKEDITOR.replace( 'editor', {
    plugins: 'sourcearea,wysiwygarea,toolbar,basicstyles',
    height: 100
} );

// Executen on button click.
function show() {
    var url = 'javascript:void( function(){' +
        'document.open();' +    
        // Note that you may need to escape HTML entities here:
        'document.write( "' + CKEDITOR.instances.editor.getData() + '" );' +
        'document.close();' +
    '})()';    

    window.open( url );
}

此类功能也由官方Preview plugin提供,因此您可能会发现它很有趣。