我尝试在页面中定义@media
样式以及我在配置中传递ckeditor的外部文件,但是当我单击工具栏中的打印按钮时似乎没有任何效果。
答案 0 :(得分:1)
这个例子(框架)应该给你一些想法(jsFiddle):
CKEDITOR.replace( 'editor', {
plugins: 'toolbar,wysiwygarea,sourcearea,print,basicstyles',
on: {
// When CKEditor DOM is loaded, append stuff to <head>.
contentDom: function() {
var doc = this.document,
head = doc.getHead();
// Via <link> tag.
doc.createElement( 'link', {
attributes: {
rel: 'stylesheet',
type: 'text/css',
href: 'print.css',
media: 'print'
}
} ).appendTo( head );
// Via <style> tag.
var style = doc.createElement( 'style', {
attributes: {
type: 'text/css'
}
} );
style.setText( '@media print { * { color: red } }' );
style.appendTo( head );
}
}
} );