gpt4 book ai didi

html 表格 - 折叠除一列以外的所有列

转载 作者:太空宇宙 更新时间:2023-11-04 07:37:06 25 4
gpt4 key购买 nike

我有一个包含多个列的 html 表格。如果表格不能水平放置在页面中,我希望折叠除一列以外的所有列(而不是在页面上显示水平滚动条)。

我所说的折叠是指:隐藏单元格中放不下的内容部分。

我该怎么做?

html:

<table>
<tr>
<td>this can collapse</td>
<td>this can collapse</td>
<td class="nocollapse">this should not collapse</td>
<td>this can collapse</td>
</tr>
</table>

CSS:

table {
width: 100%;
max-width:100%;
}
td {
border: 1px solid black;
white-space: nowrap;
overflow: hidden;
}
td.nocollapse {
overflow: none;
}

最佳答案

该按钮仅显示折叠列的脚本效果。如果屏幕宽度太小,请使用按钮的 onclick 函数的代码。

<!DOCTYPE html>
<html>
<head>
<style>
tr, td {border:solid 1px black;padding:3px;}
</style>
</head>
<body>
<table>
<tr>
<td class="collapse">this can collapse</td>
<td class="collapse">this can collapse</td>
<td>this should not collapse</td>
<td class="collapse">this can collapse</td>
</tr>
</table>
<button onclick="for (var el of document.querySelectorAll('td.collapse'))el.style.display='none';">Collapse</button>
</body>
</html>

如果您使用 jQuery,这将变得更加容易,按钮看起来像:<button onclick="$('td.collapse').hide();">Collapse</button>

关于html 表格 - 折叠除一列以外的所有列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48857357/

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