zoukankan      html  css  js  c++  java
  • 使用thead,tbody,tfoot来实现表格的分页打印

    当我们的页面中有一个很长的表格时,我们通常都希望在每页中都显示表头,或者一个表尾。那么该如何来控制打印的时候这样的行为呢?

    HTML 4.01支持几个新的元素thead,tbody,tfoot,顾名思义,他们分别代表了表格的头,主体和尾。

    下面我们来看一个例子

    <table>
        <thead>
        <tr><td>姓名</td><td>年龄</td></tr>
        </thead>

     


        <tbody>
        <tr>
            <td>陈希章</td>
            <td>100</td>
        </tr>
        <tr>
            <td>陈希章</td>
            <td>100</td>
        </tr>
        <tr>
            <td>陈希章</td>
            <td>100</td>
        </tr>
        </tbody>

        <tfoot>
            <tr>
                <td colspan="2">这是一个表尾</td>
            </tr>
        </tfoot>

    </table>

    如果有了这样的内容,那么在打印的时候就会出现下面的效果(请注意看,第一页和第二页都有表头和表尾)

    image image

    是不是很酷啊?呵呵

    需要注意的是:该功能仅在IE中受支持,其他浏览器不一定能有这个效果

    同时,如果说我们需要使用局部打印的功能,上次我们提到用脚本的方式

    //打印某个内容

    function PrintContent(el) {

            var iframe = document.createElement('IFRAME');

    var content=document.getElementById(el);

            var doc = null;

    iframe.style.position="absolute";

    iframe.style.width="0px";

    iframe.style.height="0px";

    iframe.style.left="-500px";

    iframe.style.top="-500px";

            //$(iframe).attr('style', 'position:absolute;0px;height:0px;left:-500px;top:-500px;');

            document.body.appendChild(iframe);

            doc = iframe.contentWindow.document;

            var links = window.document.getElementsByTagName('link');

            for (var i = 0; i < links.length; i++)

                if (links[i].rel.toLowerCase() == 'stylesheet')

                doc.write('<link type="text/css" rel="stylesheet" href="' + links[i].href + '"></link>');

    //        doc.write('<div class="' + $(el).attr("class") + '">' + $(el).html() + '</div>');

    doc.write('<div class="' + content.className + '">' + content.innerHTML + '</div>');                 

            doc.close();

            iframe.contentWindow.focus();

            iframe.contentWindow.print();

            document.body.removeChild(iframe);

    }

    该代码的确可以实现打印,但会丢失thead等特性,我们需要修改成下面这样

    //打印某个内容
    function PrintContent(el) {
            var iframe = document.createElement('IFRAME');
            var content=document.getElementById(el);
            var doc = null;
            iframe.style.position="absolute";
            iframe.style.width="0px";
            iframe.style.height="0px";
            iframe.style.left="-500px";
            iframe.style.top="-500px";

            //$(iframe).attr('style', 'position:absolute;0px;height:0px;left:-500px;top:-500px;');
            document.body.appendChild(iframe);
            doc = iframe.contentWindow.document;

            doc.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />');
            var links = window.document.getElementsByTagName('link');
            for (var i = 0; i < links.length; i++)
                if (links[i].rel.toLowerCase() == 'stylesheet')
                doc.write('<link type="text/css" rel="stylesheet" href="' + links[i].href + '"></link>');
    //        doc.write('<div class="' + $(el).attr("class") + '">' + $(el).html() + '</div>');

            doc.write('</head><body>');
            doc.write('<div class="' + content.className + '">' + content.innerHTML + '</div>');
            doc.write('</body></html>');       

            doc.close();
            iframe.contentWindow.focus();
            iframe.contentWindow.print();
            document.body.removeChild(iframe);
    }

    如此,整个世界就清净了

  • 相关阅读:
    javascript 注意事项汇总
    Object.prototype.toString方法
    PHPStorm使用心得
    JavaScript基于原型链的继承
    PHP重定向的3种方式
    Android应用与开发环境
    PHP时间处理
    cocos2dxna 游戏中如何控制后退键实现目的性跳转
    wp7 独立存储空间在真机和虚拟机测试的时候数据不一样
    c#获取交叉数组的行、列数
  • 原文地址:https://www.cnblogs.com/chenxizhang/p/1495248.html
Copyright © 2011-2022 走看看