zoukankan      html  css  js  c++  java
  • 网页中Div的打印

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8" />
            <title>DIV打印Demo</title>
            <!--jqueryCDN-->
            <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
        </head>
        <body>
            <div id="printdiv">
                <div style="text-align: center;">
                    <h3>沁园春·雪</h3>
                    <p>北国风光,千里冰封,万里雪飘。</p>
                    <p>望长城内外,惟余莽莽;大河上下,顿失滔滔。</p>
                    <p>山舞银蛇,原驰蜡象,欲与天公试比高。</p>
                    <p>须晴日,看红装素裹,分外妖娆。</p>
                    <p>江山如此多娇,引无数英雄竞折腰。</p>
                    <p>惜秦皇汉武,略输文采;唐宗宋祖,稍逊风骚。</p>
                    <p>一代天骄,成吉思汗,只识弯弓射大雕。</p>
                    <p>俱往矣,数风流人物,还看今朝。</p>
                </div>
            </div>
            <button id="print">打印</button>
            <div style="text-align: center;">
                <p>这是一段废话不打印,hahahahahaahahahahahahahahahahahahaha</p> 
            </div>
        </body>
        <script>
            $("#print").click(function(){
                var frame1=$('<iframe />');
                frame1[0].name="frame1";
                //隐藏构造的iframe
                frame1.css({ "display": "none" });
                $("body").append(frame1);
                var frameDoc = frame1[0].contentWindow ? frame1[0].contentWindow :
                        frame1[0].contentDocument.document ? frame1[0].contentDocument.document : frame1[0].contentDocument;
                frameDoc.document.open();
                frameDoc.document.write('<html><head>');
                frameDoc.document.write('<title>沁园春·雪</title>');
                frameDoc.document.write('</head><body>');
                frameDoc.document.write($("#printdiv").html());
                frameDoc.document.write('</body></html>');
                frameDoc.document.close();
                
                window.frames["frame1"].focus();
                window.frames["frame1"].print();
                frame1.remove();
            })
        </script>
    </html>

  • 相关阅读:
    shell编程系列5--数学运算
    qperf测量网络带宽和延迟
    使用gprof对应用程序做性能评测
    [转]极不和谐的 fork 多线程程序
    Emacs显示光标在哪个函数
    Iterm2的一些好用法
    [转]最佳日志实践
    Deep Introduction to Go Interfaces.
    CGo中传递多维数组给C函数
    seaweedfs 源码笔记(一)
  • 原文地址:https://www.cnblogs.com/MrZheng/p/7766778.html
Copyright © 2011-2022 走看看