gpt4 book ai didi

javascript - 表格布局 : fixed css not working properly with given column's width

转载 作者:行者123 更新时间:2023-11-28 05:29:53 26 4
gpt4 key购买 nike

这是我的表结构

<table id="recordingsTable" style="width:900px" class="tablesorter fixed_table">
</table>

CSS:

.fixed_table{
table-layout: fixed;
}

从 js 填充表格:

str = ''
str += '<thead>'
str += '<tr>' +
'<th style="width:150px;text-align:left !important;border-left:0;">Col 1</th>' +
'<th style="width:150px;text-align:center !important">Col 2</th>' +
'<th style="width:300px;text-align: center !important;">Col 3</th>' +
'<th style="width:100px;text-align: center !important;">Col 4</th>' +
'<th style="width:100px;text-align: center !important;">Col 5</th>' +
'<th style="width:100px;text-align: center !important;">Col 6</th>' +
'</tr>' +
'</thead><tbody style="border-bottom: 1px solid #dddddd;">';


for(i=0; i < recording_object.length; i++) {
str += '<tr>';
str += '<td style="text-align:left !important; padding-left:8px;border-left:0;">'
str += recording_object[i].text
str += '</td>'
str += '<td class="s3_file_path">' + recording_object[i].path + '</td>'
str += '<td class="s3_file_name" style="font-size:11px;">' + recording_object[i].file_name + '</td>'
str += '<td>' + recording_object[i].number + '</td>'
str += '<td>';
str += '<button id="' + recording_object[i].id + '" onclick="dup_dialog(this)" type="button" data-toggle="modal" ' +
'data-target="#upload-all-modal" disabled="disabled" class="btn btn-primary btn-xs">Duplicate</button>' +
'</td>'
str += "<td>";
str += '<button id="' + recording_object[i].id + '" class="btn btn-primary btn-xs" data-toggle="modal" ' +
'disabled="disabled" data-target="#association">Association</button>'
str += '</td></tr>'
}
str += '</tbody>'

但它没有显示 js 中定义的表格列宽,并且当我更改任何列宽时它在 View 中不会改变;即使我通过检查元素更改它

似乎表格布局无法正常工作,因为它应该按给定的方式分配每个列宽。谁能帮忙?

这是表格截图: enter image description here

最佳答案

我只看到 thead 有问题。你忘了打开它。我放了一些随机数据。我还删除了单元格中的填充。宽度与你在 javascript 中指定的完全一样.检查 fiddle 。

https://jsfiddle.net/ks3mj4ec/4/

关于javascript - 表格布局 : fixed css not working properly with given column's width,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38571527/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com