您的位置:首页 > Web前端 > JavaScript

JS实现的浏览器打印代码

2014-09-03 14:38 253 查看
<script type="text/javascript">
	//设置网页打印的页眉页脚为空
	function pagesetup_null(){                
	            var  hkey_root,
	                 hkey_path,
	                 hkey_key;
	            hkey_root="HKEY_CURRENT_USER"
	            hkey_path="\\Software\\Microsoft\\Internet Explorer\\PageSetup\\";
	            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){}
	        }
		function printView(oper){
			pagesetup_null();
			 if (oper < 10)  
			{  
			prnhtml=$("#body").html();
			window.document.body.innerHTML=prnhtml;
			window.print();  
			} else {  
			window.print();  
			}   
		}
	</script>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: