gpt4 book ai didi

jquery - 如何在 jquery 中使用索引迭代元素?

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

我只有一个仅包含类属性的 HTML 页面。每个类(class)都有单独的 table 。我只想获取每个表的行数。因为我有 n 个具有相同类名的表。可以使用 jquery 吗?

我做了如下的事情:

$(document).ready(function(){

$(".testTable").each(function(index){

document.write(index); // It returns number of table in the page

});

});

基于该代码,我只需要获取每个表中存在的行数。假设索引返回为 3。我可以假设我在该页面中有 3 个表。我只想知道每个表中有多少行。例如 table1 :3 行,table2 :2 行和 table3 :5 行。

这可能吗?请帮助我实现这一目标。

另外,我只想告诉你,我没有为每个表设置任何 id 属性。我只想通过仅使用 class attr 而不是 id 来做到这一点。

提前致谢。

-萨西

最佳答案

你应该试试下面的代码

$(document).ready(function(){
var checkStatus = function(elements){
elements.each(function(){
//check it contains the word
if($(this).is(':contains("FAILED")')){
//Empty the container and then add dynamic container
$(this).empty();
$(this).append('<div class="mainStatus">PASSED</div>');
}
})
};
$(".assertionTable").each(function(){
checkStatus($(this).find("tr td:last-child"));
});
});

关于jquery - 如何在 jquery 中使用索引迭代元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32176283/

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