<div>1. IE に Adobe PDF Reader プラグインをロードして直接印刷および印刷設定を行う <span style="color: #ff0000"></span> </div><body><div></div> <object id="pdf1" width="1000px" height="400px" classid ="clsid:CA8A9780-280D-11CF-A24D-444553540000"><div></div> <param name="src" value="../xdoc/testDoc.do"><div></div> </object><div></div> < ;script language="JavaScript"><div></div> pdf1.SetShowToolbar (false);<div></div> </script><div></div> <input type="button" value="Print" onclick="pdf1.printAll()" > ;<div></div> <input type="button" value="印刷 (ダイアログあり)" onclick="pdf1.printWithDialog()"><div></div> </body><div></div> <div></div>2. smsx.cab 経由 印刷コントロール直接印刷用 <div></div> <div></div> <div></div> <object id="factory" style="display:none" classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814" codebase="smsx.cab#Version= 6, 3,435,20"><div></div> </object><div></div> <script type="text/JavaScript"><div></div>関数設定() {<div></div> <div></div> if(!factory.object) {<div></div>alert( "印刷コントロールが正しくインストールされていません!");<div></div> return;<div></div> } else {<div></div> Factory.printing.header = "";//ヘッダー <div></div> Factory.printing.footer = "";// ページ フット<div></div> Factory.printing.leftMargin = 1.0;//左マージン <div></div> Factory.printing.topMargin = 1.3;// 上マージン <div></div> Factory.printing.rightMargin = 1.0;// 右マージン <div></div> Factory.printing.bottomMargin = 1.3; // 下マージン <div></div> <div></div> Factory.printing.portrait = true; // 印刷方向、true: 縦方向、false: 横方向 <div></div> }<div></div> }<div></div> </script><div></div> </head> ; <div></div> <script type="text/javascript"><div></div> function printPDF(){<div></div> Factory.printing.Print(true, $("#printIframe")[0].contentWindow.html);<div></div> } <div></div> </script><div></div> <body onload="setting()"><div></div> <input type="button" value="PDF を印刷" onclick="printPDF()"/><div></div> < ;iframe style="display:block; width:1200px; height:700px;" name="printIframe" id="printIframe" src="../xdoc/testDoc.do"></iframe><div></div> < ;/ボディ><div></div>