打印iframe 内容的预览设置

 我们一般蒋 iframe 高度,宽度 设置为0  目地是不显示在界面中(我们现在这种做法就需要这样)

但一般打印 都是只打印可显示的内容

sysmsgid_ifrm.htm (iframe页面 需嵌入主页中)



    消息查看
    


    


js

function print(xml){
if(!xml){
        xml = "";
    }
    var pobj = $("WebBrowser");
    if (pobj == null) {
        document.body.insertAdjacentHTML("beforeBegin", '');
        pobj = $("WebBrowser");
        if(!pobj){
            return false;
        }
    }
    SetIeFooterAndHead();
    sysmsgid_ifrm.printxmldiv.innerHTML = xml.ReplaceAll("class=brrect", "").ReplaceAll("class=rrect", "").ReplaceAll("class=brect", "");
    master_convertcm(sysmsgid_ifrm.printxmldiv);
    document.all.sysmsgid_ifrm.ExecWB(7,1);
    sysmsgid_ifrm.printxmldiv.innerHTML="";
}



在 main页中 调用print() 函数即可

其他方式

1:采用window.open() 方式打开 在写入内容

2:直接打印 iframe 首先要取得窗体焦点  pwin.focus();pwin.print();

你可能感兴趣的:(Report/Print,Js,HTML/CSS)