gpt4 book ai didi

javascript - 递增类,需要停止并从头开始

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

我有一个脚本,为表提供递增的类,但是,我有多个相同的表,需要应用相同的类。当前在一个表的末尾,它只是继续增加类。

当前:类 =:1,2,3,4,5,6[表尾]7,8,9,10,11,12

我要找的:class =: 1,2,3,4,5,6[表尾]1,2,3,4,5,6

这是我的脚本:

<script>
var j = 1;
$("table.mobile_table tr").each(function(){
$(this).attr("class", j++); // Give rows incrementing class
});
</script>

最佳答案

<script>

$("table.mobile_table").each(function(){
var j = 1;
var currentTable = $(this);
currentTable.find("tr").each(function(){
$(this).attr("class", j++);
});

});
</script>

关于javascript - 递增类,需要停止并从头开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20910848/

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