0

我有如下所示的 HTML 表格。它有七列。我正在使用 jQuery 调整表格单元格的宽度。jQuery 中的总百分比为 100。但是,表格并没有占用完整的空间;有一些未使用的空间。如何纠正这个?

http://jsfiddle.net/Lijo/eFS5J/3/

在此处输入图像描述

 $(document).ready(function () {


        $('#gridDiv').css('width', '630px');


        //Set width of table cells
        var numberOfColumns = 7;
        $('.resultGridTable th, .resultGridTable td').each(function (i) {


            $(this).css('background-color', (['Purple', 'Orange', 'Purple', 'Orange', 'Purple', 'Orange', 'Purple'][i % 7]));

            if (i % numberOfColumns == 0) {
                $(this).css('width', '15%');
            }

            if (i % numberOfColumns == 1) {
                $(this).css('width', '15%');
            }

            if (i % numberOfColumns == 2) {
                $(this).css('width', '15%');
            }

            if (i % numberOfColumns == 3) {
                $(this).css('width', '15%');
            }
            if (i % numberOfColumns == 4) {
                $(this).css('width', '10%');
            }
            if (i % numberOfColumns == 5) {
                $(this).css('width', '15%');
            }

            if (i % numberOfColumns == 6) {
                $(this).css('width', '15%');
            }


        }
 );


    }
);
4

3 回答 3

3

将以下属性添加到您的表格元素。

width="100%"
于 2012-06-12T09:33:45.367 回答
0

干得好:

<table class="resultGridTable" cellspacing="0" id="detailContentPlaceholder_grdTaxAssociates" style="border-collapse: collapse; width:100%;">
于 2012-06-12T09:38:46.877 回答
0

仅通过在下面的位置使用内联 css 将宽度设置为 100%

<table class="resultGridTable" cellspacing="0" id="detailContentPlaceholder_grdTaxAssociates"
                    style="border-collapse: collapse;width:100%;">

在此处查看演示

于 2012-06-12T09:50:24.423 回答