0

Web ページの一部を印刷しようとしていますが、css スタイルシートを使用してフォーマットできません。これが私のコードです。

Javascript:

function print()
{
  var Print=$("#myTable").html();
  newWin= window.open();
  newWin.focus();
  newWin.document.write("<html><head><title>Print Report</title><link rel='stylesheet' media='print' href='/timer/css/print.css' type='text/css'></head>");
  newWin.document.write("<body><h2>ENTERPRISE FILE SYSTEMS REPORT</h2>");
  newWin.document.write(Print);
  newWin.document.write("</body></html>");
  newWin.print();
  newWin.close();
}

myTable は印刷したいテーブルです。css ファイル「print.css」はページをフォーマットしません。誰でもこれを修正する方法を教えてもらえますか? ありがとう!

4

0 に答える 0