使用Js打印修改注册表:如下
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,"")
}catch(e){}
}但是现在我想把页码换到右下角。其他如网址要隐藏掉 如何修改呢
各位大大帮忙看看

解决方案 »

  1.   

         function pagesetup_null()
                    on error resume next
                    Set RegWsh = CreateObject("WScript.Shell")
                    hkey_key="\header" 
                     RegWsh.RegWrite hkey_root+hkey_path+hkey_key,""
                    hkey_key="\footer"
                    RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"&w&b页码,&p/&P"
                    end function
      

  2.   

    JavaScript打印功能实现,css控制的,你可以用这个http://download.csdn.net/source/1148336