1
印刷するときにテキストのフォントサイズを調整するにはどうすればよいですか?私はフォントサイズのプロパティを入れようとしましたが、印刷ボタンをクリックしても使用されません。デフォルトのフォントサイズに戻ります。印刷時にフォントサイズを調整する
function print1(strid)
{
var values = document.getElementById(strid);
var printing =window.open("");
printing.document.write(values.innerHTML);
printing.document.close();
printing.focus();
printing.print();
printing.close();
}
<div id="print2">
Ex : My data table 1
</div>
<input type="button" value="Print" onclick="return print1('print2')">
@bitfillder、その動作していない:
はここで完全な例です。どうしたらいいの? – Jannice
まだ持っていない場合は、