次の関数を使用してdivドキュメントを印刷しています。動的に生成されたcssがプレビューに表示されますが、印刷後、コンテンツは表示されますがcssは表示されません。私を助けてください 。
関数 PrintPDF(elem) { Popupnew($(elem).html()); }
function Popupnew(data)
{
var mywindow = window.open("", "mydiv", "height=400,width=600");
mywindow.document.write("<html><head><title>Annotated Document</title>");
mywindow.document.write("<link href='{{asset('bundles/acmeregister/css/style.css') }}' media='print,screen' rel='stylesheet' type='text/css'>\n");
//mywindow.document.write('<script type="text/javascript" media="print,screen" src="bundles/acmeregister/importance/rangy-cssclassapplier.js">');
//mywindow.document.write('<script type="text/javascript" media="print,screen" src="bundles/acmeregister/importance/rangy-highlighter.js">');
mywindow.document.write('</head><body >');
mywindow.document.write(data);
mywindow.document.write('</body></html>');
mywindow.print();
mywindow.close();
return true;
}