zoukankan      html  css  js  c++  java
  • 网页局部打印

     
    <div>文件头部,不打印出来的内容。。。</div>
    <div>文件头部,不打印出来的内容。。。</div>
    <div>文件头部,不打印出来的内容。。。</div>
    <!--startprint-->
    <div>这是被打印出来的内容</div>
    <div>这是被打印出来的内容</div>
    <div>这是被打印出来的内容</div>
    <div>这是被打印出来的内容</div>
    <!--endprint-->
    <div>文件尾部,不打印出来的内容。。。</div>
    <div>文件尾部,不打印出来的内容。。。</div>
    <div>文件尾部,不打印出来的内容。。。</div>
    <input type="button" name="print" value="预览并打印" onclick="preview()">
    function preview() {
    bdhtml = window.document.body.innerHTML;
    sprnstr = "<!--startprint-->";
    eprnstr = "<!--endprint-->";
    prnhtml = bdhtml.substr(bdhtml.indexOf(sprnstr) + 17);
    prnhtml = prnhtml.substring(0, prnhtml.indexOf(eprnstr));
    window.document.body.innerHTML = prnhtml;
    window.print();
    }
  • 相关阅读:
    h5 穿透滚动
    Safari 导航栏
    浮层滚动问题
    兼容性常规检测
    CORS
    Webpack 一些概念
    01 离散时间信号的时域表示
    03 信道容量
    01 MATLAB基本概念
    02 字斟句酌
  • 原文地址:https://www.cnblogs.com/chenzeyongjsj/p/7239636.html
Copyright © 2011-2022 走看看