13

我的 Wordpress 插件有这个功能,它使用 jQuery 打印来自带有“table_disp”类的 div 的内容。我怎样才能打印出css样式。

function pop_print(){
    w=window.open(null, 'Print_Page', 'scrollbars=yes');        
    w.document.write(jQuery('.table_disp').html());
    w.document.close();
    w.print();
}

任何想法?

4

4 回答 4

11

您需要在弹出窗口的父页面中包含您正在使用的 SAME 样式表。您可能想要制作一个包含样式表的虚拟页面存根/包装器,然后注入您的 HTML。

var myStyle = '<link rel="stylesheet" href="http://mysite.com/mystyle.css" />';
w.document.write(myStyle + jQuery('.table_disp').html());
于 2013-07-19T18:54:20.703 回答
3
function PrintElem(elem) {
    Popup(jQuery(elem).html());
}

function Popup(data) {
    var mywindow = window.open('', 'my div', 'height=400,width=600');
    mywindow.document.write('<html><head><title></title>');
    mywindow.document.write('<link rel="stylesheet" href="http://www.test.com/style.css" type="text/css" />');  
    mywindow.document.write('<style type="text/css">.test { color:red; } </style></head><body>');
    mywindow.document.write(data);
    mywindow.document.write('</body></html>');
    mywindow.document.close();
    mywindow.print();                        
}

<a href="#" id="hrefPrint" onclick="PrintElem('.print_div')">Print</a>
于 2014-05-08T10:58:36.223 回答
1

如果你可以添加一个插件,那么 Jquery printThis 插件效果很好(因为你已经在使用 jQuery),并且完全符合你的需要。http://plugins.jquery.com/printThis/

它制作一个 iframe 并使用您的页面 css plus 允许一个额外的 css 文件专门用于打印,以及其他东西

于 2014-02-25T18:47:21.667 回答
0

改为附加样式表

var css= '<link rel="stylesheet" href="/css/print.css" />';
            var printContent = document.getElementById("printContentID");

            var WinPrint = window.open('', '', 'width=900,height=650');
            WinPrint.document.write(printContent.innerHTML);
            WinPrint.document.head.innerHTML = css;
            WinPrint.document.close();
            WinPrint.focus();
            WinPrint.print();
            WinPrint.close();
于 2018-09-23T06:22:01.850 回答