• window.print()打印时,如何自定义页眉/页脚、页边距


    自定义页眉/页脚、页边距,要用到ActiveX控件(在ie的安全设置的启用),会修改注册表中ie的设置,代码如下。

    try{ 
    var hkey_root,hkey_path,hkey_key; 
    hkey_root="HKEY_CURRENT_USER"; hkey_path="\Software\Microsoft\Internet Explorer\PageSetup\";
    var RegWsh = new ActiveXObject("WScript.Shell");
    
    //设置页眉/脚的字体样式
    hkey_key="font";
    RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"font-size: 12px; font-family: 黑体; line-height: 24px");
    
    //设置页眉
    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 页"); 
    
    //设置页边距(0.6 要乘以 2.5为实际打印的尺寸)
    hkey_key="margin_bottom";   
    RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"0.6");
    
    hkey_key="margin_left";        RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"0.6");
    
    hkey_key="margin_right";          RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"0.6"); 
    
    hkey_key="margin_top";          RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"0.6");
    
    window.print();
    }catch(e){
        alert(e.name+"  "+e.message);
    } 
  • 相关阅读:
    libuv 中文编程指南(一)序言
    一些鲜为人知却非常实用的数据结构
    libuv 中文编程指南(二)libuv 基础
    Zookeeper 的 Lua 绑定(二)
    高度怀疑
    不能没有你
    第一次看流星雨记
    调侃下蓝网队 我还是比较极端的 不要好 那就要坏吧
    摇滚校园
    守法公民
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13317503.html
Copyright © 2020-2023  润新知