gpt4 book ai didi

javascript - 如何使用 jquery 查找表的哪个子级具有特定的类?

转载 作者:行者123 更新时间:2023-12-02 16:36:35 26 4
gpt4 key购买 nike

如何使用 jquery 查找具有“normal-sort-table”类的表的哪个子级具有“nosort”类?我想用 'nosort' 类来提醒 th 的列号。

<table class="normal-sort-table">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th class="nosort">Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>mark246</td>
</tr>
</tbody>
</table>
<script>
$( document ).ready(function() {

if ( $('.normal-sort-table tr th').hasClass( "nosort" ) ) {alert( 'column-number-with-nosort-class-alert-here' )}


})
</script>

最佳答案

你可以使用jq .index()方法:

$('.normal-sort-table tr th.nosort').index()

关于javascript - 如何使用 jquery 查找表的哪个子级具有特定的类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27875173/

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