900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > 打印html并去掉页眉页脚

打印html并去掉页眉页脚

时间:2022-06-08 16:36:22

相关推荐

打印html并去掉页眉页脚

win10下测试ie11,chrome,firefox,edge 都可以成功去掉页眉页脚

<!DOCTYPE html><html><head><title>print</title><meta charset="utf-8"><style media="print">@page {size: auto;margin: 0mm;}</style></head><body><div style="width:300px; height:300px;border: 1px solid blue;"><label>label</label><button>button</button></div><button onclick='print_page()'>print</button></body><script type="text/javascript">function print_page() {if (!!window.ActiveXObject || "ActiveXObject" in window) {remove_ie_header_and_footer();}window.print();};function remove_ie_header_and_footer() {var hkey_root, hkey_path, hkey_key;hkey_path = "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\PageSetup\\";try {var RegWsh = new ActiveXObject("WScript.Shell");RegWsh.RegWrite(hkey_path + "header", "");RegWsh.RegWrite(hkey_path + "footer", "");} catch (e) {}}</script></html>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。