调用IE打印页面的指定部分

function printing()
{
alert(document.getElementById('report1').outerHTML);
var nw = window.open('','','width=800,height=600');
nw.document.open("text/html","GBK");
nw.document.write("<object classid='CLSID:8856F961-340A-11D0-A96B-00C04FD705A2' id='wb'height='0' width='0'></object>");
nw.document.write('<style id="report1_style"></style><scrip'+'t language=javascript>');
nw.document.write('report1_style.styleSheet.addRule( ".report1_1", "text-align:left;vertical-align:middle;font-family:宋体;font-size:12px;color:#000000;font-weight:normal;font-style:normal;text-decoration:none;border-left-style:none;border-left-width:1px;border-left-color:#000000;border-top-style:none;border-top-width:1px;border-top-color:#000000;border-right-style:none;border-right-width:1px;border-right-color:#000000;border-bottom-style:none;border-bottom-width:1px;border-bottom-color:#000000;background-color:#FFFFFF;word-break:keep-all;" );');
nw.document.write('report1_style.styleSheet.addRule( ".report1_2", "text-align:left;vertical-align:middle;font-family:Dialog;font-size:12px;color:#000000;font-weight:normal;font-style:normal;text-decoration:none;border-left-style:none;border-left-width:1px;border-left-color:#000000;border-top-style:none;border-top-width:1px;border-top-color:#000000;border-right-style:none;border-right-width:1px;border-right-color:#000000;border-bottom-style:none;border-bottom-width:1px;border-bottom-color:#000000;background-color:#FFFFFF;word-break:keep-all;" );');
nw.document.write('report1_style.styleSheet.addRule( ".report1_3", "text-align:center;vertical-align:middle;font-family:Dialog;font-size:14px;color:#000000;font-weight:bold;font-style:normal;text-decoration:none;border-left-style:none;border-left-width:1px;border-left-color:#000000;border-top-style:none;border-top-width:1px;border-top-color:#000000;border-right-style:none;border-right-width:1px;border-right-color:#000000;border-bottom-style:none;border-bottom-width:1px;border-bottom-color:#000000;background-color:#FFFFFF;word-break:keep-all;" );');
nw.document.write('report1_style.styleSheet.addRule( ".report1_4", "text-align:left;vertical-align:middle;font-family:宋体;font-size:14px;color:#000000;font-weight:normal;font-style:normal;text-decoration:none;border-left-style:none;border-left-width:1px;border-left-color:#000000;border-top-style:none;border-top-width:1px;border-top-color:#000000;border-right-style:none;border-right-width:1px;border-right-color:#000000;border-bottom-style:none;border-bottom-width:1px;border-bottom-color:#000000;background-color:#FFFFFF;word-break:keep-all;" );');
nw.document.write('report1_style.styleSheet.addRule( ".report1_5", "text-align:right;vertical-align:middle;font-family:Dialog;font-size:14px;color:#000000;font-weight:normal;font-style:normal;text-decoration:none;border-left-style:none;border-left-width:1px;border-left-color:#000000;border-top-style:none;border-top-width:1px;border-top-color:#000000;border-right-style:none;border-right-width:1px;border-right-color:#000000;border-bottom-style:none;border-bottom-width:1px;border-bottom-color:#000000;background-color:#FFFFFF;word-break:keep-all;" );');
nw.document.write('report1_style.styleSheet.addRule( ".report1_6", "text-align:left;vertical-align:middle;font-family:Dialog;font-size:14px;color:#000000;font-weight:normal;font-style:normal;text-decoration:none;border-left-style:none;border-left-width:1px;border-left-color:#000000;border-top-style:none;border-top-width:1px;border-top-color:#000000;border-right-style:none;border-right-width:1px;border-right-color:#000000;border-bottom-style:none;border-bottom-width:1px;border-bottom-color:#000000;background-color:#FFFFFF;word-break:keep-all;" );');
nw.document.write('report1_style.styleSheet.addRule( ".report1_7", "text-align:center;vertical-align:middle;font-family:Dialog;font-size:22px;color:#000000;font-weight:bold;font-style:normal;text-decoration:none;border-left-style:none;border-left-width:1px;border-left-color:#000000;border-top-style:none;border-top-width:1px;border-top-color:#000000;border-right-style:none;border-right-width:1px;border-right-color:#000000;border-bottom-style:none;border-bottom-width:1px;border-bottom-color:#000000;background-color:#FFFFFF;word-break:keep-all;" );');
nw.document.write('report1_style.styleSheet.addRule( ".report1_8", "text-align:right;vertical-align:middle;font-family:宋体;font-size:14px;color:#000000;font-weight:bold;font-style:normal;text-decoration:none;border-left-style:none;border-left-width:1px;border-left-color:#000000;border-top-style:none;border-top-width:1px;border-top-color:#000000;border-right-style:none;border-right-width:1px;border-right-color:#000000;border-bottom-style:none;border-bottom-width:1px;border-bottom-color:#000000;background-color:#FFFFFF;word-break:keep-all;" );');
nw.document.write('</scrip'+'t>');
nw.document.write(document.getElementById('report1').outerHTML)
nw.document.write("<scrip"+"t>document.all.wb.ExecWB(7,1)</sc"+"ript>");
}

猜你喜欢

转载自blog.csdn.net/sxbcsdn/article/details/83258523