IE网页打印页面设置符合含义
在web页面中的打印一直是开发人员比较头疼的问题,如果不是要求特别高的精确打印,可以调用浏览器的打印功能来进行。如果要求进行一些页眉、页脚的设置,可以使用下面的代码(仅限于IE):
try {
??????? var wsh = new ActiveXObject("WScript.Shell");
??????? var s = "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\PageSetup\";
??????? wsh.RegWrite(s + "font","font-family: Arial; font-size: 9pt; color: rgb(0,0,0);");
??????? wsh.RegWrite(s + "orientation", "0");
???????
??????? wsh.RegWrite(s + "header", "&b" + g_sn);
??????? wsh.RegWrite(s + "footer", "&b第&p页/共&P页");
??????? wsh.RegWrite(s + "margin_left", "0.6");
??????? wsh.RegWrite(s + "margin_top", "0.6");
??????? wsh.RegWrite(s + "margin_right", "0.6");
??????? wsh.RegWrite(s + "margin_bottom", "0.6");
??????? isPrintClicked = true;
???????
??????? document.execCommand("Print");
??? } catch (e) {
??????? window.alert("您的浏览器设置不允许页面设置打印机,请在菜单:文件>页面设置 中进行打印设置");
??? }
?
这段代码可以通过直接修改注册表来实现类似IE菜单中的“页面设置”。由于是通过调用ActiveX来实现的,可以告知用户调整IE的安全设置,允许或者提示ActiveX的执行。
页眉和页脚的符号说明如下: