JS网页打印设置技巧

利用CSS样式打印是经常使用的一种打印方法,利用它可以非常方便的实现打印页面中的指定内容和分页打印,下面将通过具体实例介绍如何利用CSS样式打印。

[分析]:
1.打印样式区分:打印网页带页面样式,需指明一个media='print'的样式,建议分开,如下创建军一个bankprint.css打印样式文件。
<link rel="stylesheet" media="screen" type="text/css" href="/public/default/css/bank.css" />
<!-- 打印样式 -->
<link rel="stylesheet" media="print" type="text/css" href="/public/default/css/bankprint.css" />
例:
<style media=‘print’>

.Noprint {display:none;}

.PageBreak {page-break-after: always;}

</style>
说明:
media类型是CSS属性媒体类型,用于直接引入媒体的属性。其语法格式如下:
@media screen | print | projection | braille | aural | tv | handheld | all
参数说明
  screen:指计算机屏幕。
  print:指用于打印机的不透明介质。
  projection:指用于显示的项目。
  braille:盲文系统,指有触觉效果的印刷品。
  aural:指语音电子合成器。
  tv:电视类型的媒体。
  handheld:指手持式显示设备。
  all:用于所有媒体。
2.WebBrowser控件
同其他控件一样,首先我们需要在页面中嵌入WebBrowser控件,不过由于该控件是IE浏览器自带的,支持浏览器默认安全设置,因此避免了安全性设置的麻烦。对于IE7及以上安全性要求更高的浏览器,您或许还是需要自定义IE的安全性级别。
<OBJECT classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2" id="wb" width="0" height="0"></OBJECT>
下面就是该控件涉及打印的功能调用,用户可以在JavaScrip中调用:
wb.execwb(6,1); //打印,打印当前页面
wb.execwb(7,1); //打印预览
wb.execwb(8,1); //打印设置,调出系统打印设置对话框

3.页眉、页脚设置:打印时,有的需要去掉页眉页脚,或替换成自已想要的。
<script language="JavaScript">
 
    var hkey_root,hkey_path,hkey_key;
      hkey_root="HKEY_CURRENT_USER";
      hkey_path="\\Software\\Microsoft\\Internet Explorer\\PageSetup\\";
      //配置网页打印的页眉页脚为空
      function pagesetup_null(){     
            try{
                  var RegWsh = new ActiveXObject("WScript.Shell");                 
                  hkey_key="header";                 
                  RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"");
                  hkey_key="footer";
                  RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"");
                  //&b 第&p页/共&P页 &b
            }catch(e){}
      }
      //配置网页打印的页眉页脚为默认值
      function pagesetup_default(){
            try{
                  var RegWsh = new ActiveXObject("WScript.Shell");
                  hkey_key="header";
                  RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"&w&b页码,&p/&P")
                  hkey_key="footer";
                  RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"&u&b&d");
            }catch(e){}
      }
...
</script>

[源码例子]:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>打印设置</title>
<link rel="stylesheet" media="screen" type="text/css" href="http://www.chinasvf.com/Webs/public/default/css/bank.css" />
<!-- 打印样式 -->
<link rel="stylesheet" media="print" type="text/css" href="http://www.chinasvf.com/Webs/public/default/css/bankprint.css" />
<script language="JavaScript">
      var hkey_root,hkey_path,hkey_key;
      hkey_root="HKEY_CURRENT_USER";
      hkey_path="\\Software\\Microsoft\\Internet Explorer\\PageSetup\\";
      //配置网页打印的页眉页脚为空
      function pagesetup_null(){     
            try{
                  var RegWsh = new ActiveXObject("WScript.Shell");                 
                  hkey_key="header";                 
                  RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"");
                  hkey_key="footer";
                  RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"");
                  //&b 第&p页/共&P页 &b
            }catch(e){}
      }
      //配置网页打印的页眉页脚为默认值
      function pagesetup_default(){
            try{
                  var RegWsh = new ActiveXObject("WScript.Shell");
                  hkey_key="header";
                  RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"&w&b页码,&p/&P")
                  hkey_key="footer";
                  RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"&u&b&d");
            }catch(e){}
         
        //打印选区内容
      function doPrint() {
            pagesetup_null();
            bdhtml=window.document.body.innerHTML; 
            sprnstr="<!--startprint-->"; 
            eprnstr="<!--endprint-->"; 
            prnhtml=bdhtml.substr(bdhtml.indexOf(sprnstr)+17); 
            prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr)); 
            window.document.body.innerHTML=prnhtml; 
            window.print(); 
      }
      //打印页面预览
      function printpreview(){
            pagesetup_null();
            //wb.printing.header = "居左显示&b居中显示&b居右显示页码,第&p页/共&P页";
            //wb.printing.footer = "居左显示&b居中显示&b居右显示页码,第&p页/共&P页";
            try{
                  wb.execwb(7,1);
            }catch(e){
                  alert("您的浏览器不支持此功能,请选择'文件'->'打印预览'");
            }
      }
      //打印
      function prints(){
            pagesetup_null();
            //wb.printing.header = "居左显示&b居中显示&b居右显示页码,第&p页/共&P页";
            //wb.printing.footer = "居左显示&b居中显示&b居右显示页码,第&p页/共&P页";
            try{
                  wb.execwb(6,1);
            }catch(e){
                  alert("您的浏览器不支持此功能");
            }
      }
</script>
</head>
<body>
<OBJECT classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2" id="wb" width="0" height="0"></OBJECT>
<div id="bankwrap">
  <div class="Noprint"><a href="http://www.chinasvf.com" style="cursor:pointer; color:#0000FF">返回首页</a></div>
  <div style="text-align:right">
      <p class="Noprint">
              <span style="cursor:pointer; color:#0000FF" οnclick="javascript:window.open('http://www.chinasvf.com/Webs/Share/printhelp')" class="Noprint">打印帮助</span>
              <span style="cursor:pointer; color:#0000FF" οnclick="printpreview();">打印预览</span>
              <span style="cursor:pointer; color:#0000FF" οnclick="prints();" class="Noprint">打印</span>
      </p>
  </div>
  <div class="banktitle">内容</div>
</div>
</body>
</html>
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值