我主要使用了IE內(nèi)置的WebBrowser控件,無需用戶下載和安裝。WebBrowser有很多功能,除打印外的其他功能就不再贅述了,你所能用到的打印功能也幾乎全部可以靠它完成,下面的問題就是如何使用它了。
先說顯示后打印,后面說后臺打?。?/span>
1.首先引入一個WebBrowser在需要打印的頁面,可以直接添加:
<object id="WebBrowser" classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height="0" width="0"></object>
到頁面,或者使用Javascript在需要的時候臨時添加也可以:
document.body.insertAdjacentHTML("beforeEnd","<object id=\"WebBrowser\" width=0 height=0 \classid=\"clsid:8856F961-340A-11D0-A96B-00C04FD705A2\">");
2 .頁面設(shè)置和打印預覽如下所示,直接調(diào)用即可:
document.all.WebBrowser.execWB(6,6) 直接打印
document.all.WebBrowser.execWB(8,1) 頁面設(shè)置
document.all.WebBrowser.execWB(7,1) 打印預覽
或者:
execscript("document.all.WebBrowser.execWB 7, 1","VBscript");
3 隱藏不打印的頁面元素和分頁CSS 有個Media 屬性,可以分開設(shè)置打印和顯示的格式。如 <style media="print" type="text/css"> …</style> 中間的格式將只在打印時起作用,不會影響顯示界面。所以可以設(shè)定:
<style media="print" type="text/css">
.Noprint{display:none;}
.PageNext{page-break-after: always;}
</style>
然后給不想打印的頁面元素添加: class="Noprint" ,那就不會出現(xiàn)在打印和打印預覽中了。想分頁的地方添加: <div class="PageNext"></div> 就可以了。
4.打印頁面的特定部分我是通過將需要打印的特定部分另建一個頁面,然后裝入主頁面的一個IFrame中,再調(diào)用IFrame的打印方法,只打印IFrame中的內(nèi)容實現(xiàn)的。如:
<iframe style="visibility: visible" name="FrameId" width="100%" height="30%" src="NeedPrintedPage.asp"></iframe>
下面的pringFrame js函數(shù)將只打印Iframe中的內(nèi)容,可以直接引用使用,如:
printFrame(FrameId);window.print = printFrame; // main stuff
function printFrame(frame, onfinish) {
if ( !frame ) frame = window;
function execOnFinish() {
switch ( typeof(onfinish) ) {
case "string": execscript(onfinish); break;
case "function": onfinish();
}
if ( focused && !focused.disabled ) focused.focus();
}
if (( frame.document.readyState !== "complete") &&( !frame.document.confirm("The document to print is not downloaded yet! Continue with printing?") )){
execOnFinish();
return;
}
var eventScope = printGetEventScope(frame);
var focused = document.activeElement;
window.printHelper = function() {
execscript("on error resume next: printWB.execWB 6, 1", "VBscript");
printFireEvent(frame, eventScope, "onafterprint");
printWB.outerHTML = "";
execOnFinish();
window.printHelper = null;
}
document.body.insertAdjacentHTML("beforeEnd","<object id=\"printWB\" width=0 height=0 \classid=\"clsid:8856F961-340A-11D0-A96B-00C04FD705A2\">");
printFireEvent(frame, eventScope, "onbeforeprint");
frame.focus();
window.printHelper = printHelper;
setTimeout("window.printHelper()", 0);
}
// helpers
function printIsNativeSupport() {
var agent = window.navigator.userAgent;
var i = agent.indexOf("MSIE ")+5;
return parseInt(agent.substr(i)) >= 5 && agent.indexOf("5.0b1") < 0;
}
function printFireEvent(frame, obj, name) {
var handler = obj[name];
switch ( typeof(handler) ) {
case "string": frame.execscript(handler); break;
case "function": handler();
}
}
function printGetEventScope(frame) {
var frameset = frame.document.all.tags("FRAMESET");
if ( frameset.length ) return frameset[0];
return frame.document.body;
}
Iframe中所裝載頁面的打印效果在所裝載頁面設(shè)置就可以了,如分頁等。
5.后臺打印我是通過建一個隱藏Iframe實現(xiàn)的,當然仍然會有頁面裝載的過程。下面的函數(shù)創(chuàng)建Iframe裝載頁面并打印。如:
printHidden(url) //url為頁面地址
function printHidden(url) {
document.body.insertAdjacentHTML("beforeEnd","<iframe name=printHiddenFrame width=0 height=0></iframe>");
var doc = printHiddenFrame.document;doc.open();doc.write("<body onload=\"parent.onprintHiddenFrame()\">");
doc.write("<iframe name=printMe width=0 height=0 src=\"" +url + "\"></iframe>");
doc.write("</body>");
doc.close();
}
function onprintHiddenFrame() {
function onfinish() {
printHiddenFrame.outerHTML = "";
if ( window.onprintcomplete ) window.onprintcomplete();
}
printFrame(printHiddenFrame.printMe, onfinish);
}
它用到了printFrame,所以別忘了引用前面的函數(shù)。
總之,WebBroswer已經(jīng)為我們提供了解決方案,我們只要結(jié)合需求把它應(yīng)用好就行了。