6

在我正在编写的插件中,我在表格单元格的宽度方面遇到了可怕的麻烦。我所做的就是使用 jQuery 的.width()函数获取表格单元格的宽度,然后将相同的单元格设置为返回的宽度。基本上,这是:

$table.find('> thead > tr > th').each( function() {
    var $th = $(this);
    $th.css({width: $th.width()});
} );

但是,在许多情况下,返回的宽度不正确,设置它会更改单元格的宽度。起初它看起来好像偏离了 1px,所以我在返回的宽度上添加了 1px。但是如果边框更厚,它会关闭更多 - 但是它似乎不是简单地添加边框宽度的情况。对于初学者来说,显然有 2 个边框,但仅相差 1 个边框的宽度。并且随着边框宽度的变化,您需要添加的值似乎几乎是随机的。

这是我的代码示例- 宽度设置部分在页面加载后 1 秒运行,因此您可以看到更改。是否有可靠的方法来获取/设置 Javascript 中表格单元格的宽度?

4

1 回答 1

1

演示: https ://so.lucafilosofi.com/jquery-width-returning-incorrect-values-on-table-cells/

这是您几乎重写的插件...在IE7-10、Chrome、Firefox上测试

    (function($) {
        $.fn.stickyHeader = function() {
            return this.each(function() {

                // apply to tables only
                if (this.tagName.toUpperCase() !== 'TABLE')
                    return;

                var $table = $(this).addClass('jq-stickyHeader-table');
                var $wrapper = $table.wrap('<div/>').parent().addClass('jq-stickyHeader-wrapper');

                // set each TH to its own width
                $table.find('thead th').each(function() {
                    $(this).html('<div>' + $(this).text() + '</div>');
                    $(this).width($(this).find('div').width());
                });

                $wrapper.width($table.width()).height($table.height());

                // clone entire table and remove tbody (performance seems fine)
                var $stickyheader = $table.find('thead').clone().wrap('<table/>').parent().addClass('jq-stickyHeader');

                // hack for IE7
                if ($.browser.msie && parseInt($.browser.version, 10) == 7) {
                    $table.find('tr:first-child td').css('border-top', 0);
                }

                $stickyheader.css({
                    'width' : $table.width(),
                }).insertAfter($table);

                $(window).scroll(function() {
                    // while over the table, show sticky header
                    var currTop = ($(this).scrollTop() - $table.offset().top);

                    $stickyheader.stop(true, true).animate({
                        top : currTop
                    }, 100);

                    var scrollLimit = $table.offset().top + ($table.height() - $stickyheader.height());
                    var isVisible = (currTop > $table.offset().top && currTop < scrollLimit) ? 'block' : 'none';
                    $stickyheader.css({
                        display : isVisible
                    });
                });

            });
        };

    })(jQuery);

    $(function() {
        $('table').stickyHeader();
    });

css里面的demo源码!

于 2012-11-25T00:33:37.647 回答