1、 透過在IE中載入adobe pdf reader 外掛程式進行直接列印和列印的設定(建議)
pdf1.SetShowToolbar (false);
#
#2、透過 smsx.cab 列印控制項直接列印
&Java;script type="text/Java;Script type="text/Java;Script ">
function setting () {
if(!factory.object) {
alert("控制項列印沒有正確安裝!" );
return;
} else {
factory.printing.header = "";//頁眉
# factory.printing.footer = "";//頁眉
# factory.printing.footer = "";//頁腳
factory.printing.leftMargin = 1.0;//左邊距
factory.printing.topMargin = 1.3;//上邊距
factory .printing.rightMargin = 1.0;//右邊距
factory.printing.bottomMargin = 1.3;//下邊距
factory.printing.portrait = true;/ /列印方向,true:縱向.false:橫向
}
}
function printPDF(){
factory.printing.Print(true, $("#printIframe")[0] .contentWindow.html);
}
< input type="button" value="列印PDF" onclick="printPDF()"/>
#### ###
以上是IE直接列印頁面的方式詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!