您的位置:首页 > 产品设计 > UI/UE

vue js打印并去掉页眉和页脚

2018-01-25 15:59 330 查看
  <Button type="info"  @click="print" icon="ios-box-outline" :disabled.native="disable">打印</Button>

         //打印功能

    print(e){  

                // if (!!window.ActiveXObject || "ActiveXObject" in window) { //是否ie

                //     alert('9090');

                //     remove_ie_header_and_footer();

                // }

                this.remove_ie_header_and_footer();

                let subOutputRankPrint = document.getElementById('subOutputRank-print');  

                console.log(subOutputRankPrint.innerHTML);  

                let newContent =subOutputRankPrint.innerHTML;  

                let oldContent = document.body.innerHTML;  

                document.body.innerHTML = newContent;  

                window.print();  

                window.location.reload();  

                document.body.innerHTML = oldContent;  

                return false;  

            }, 

  //去掉页眉和页脚

            remove_ie_header_and_footer() {

                var hkey_path;

                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) {

                }

            },
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: