• 网页中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>

  • 相关阅读:
    吴裕雄 python深度学习与实践(1)
    吴裕雄 python 机器学习-Logistic(1)
    吴裕雄 python 熵权法确定特征权重
    【Uva 1252】Twenty Questions
    【玲珑杯 round#18 B】图论你先敲完模板
    【Uva 10817】Headmaster's Headache
    【玲珑杯 round#18 A】计算几何你瞎暴力
    【Uva 12128】Perfect Service
    【UVa 12186】Another Crisis
    【Uva 10003】Cutting Sticks
  • 原文地址:https://www.cnblogs.com/MrZheng/p/7766778.html
Copyright © 2020-2023  润新知