如何在单击按钮时在新模态窗口中将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。
请帮帮我..
答案 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提供,因此您可能会发现它很有趣。