gpt4 book ai didi

javascript改变表格标题的宽度

转载 作者:行者123 更新时间:2023-11-28 06:54:13 25 4
gpt4 key购买 nike

这是我的表格,我想通过 javascript/jquery 更改所有表格的宽度。

<div class="dataTables_scrollHeadInner" >  
<table class="table table-condensed table-bordered table-striped dataTable no-footer" >
<thead class="bg-gray-active1">
<tr role="row">
<th class="sorting_disabled" >Serial</th>
<th class="sorting_disabled" >dsad</th>
<th class="sorting_disabled" >vg</th>
<th class="sorting_disabled" >sdfg</th>
</tr>
</thead>
</table>
</div>

我想要第一个<th>的宽度: 53px
我想要秒的宽度 <th> : 152px
我想要三分之一的宽度 <th> : 500px
我想要第四个 <th> 的宽度: 100 像素

最佳答案

你可以使用jquery

$( "tr th:nth-child(1)" ).attr("width","53"); 
$( "tr th:nth-child(2)" ).attr("width","152");
$( "tr th:nth-child(3)" ).attr("width","500");
$( "tr th:nth-child(4)" ).attr("width","100");

它选择每个以 th 为 child(n) 的 tr。 n是他们 child 的数量

.attr 用于添加 html 属性。更多信息请参见此处 http://www.w3schools.com/jquery/html_attr.asp

关于javascript改变表格标题的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33604505/

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