gpt4 book ai didi

javascript - 如何从传递的表中获取行数?

转载 作者:行者123 更新时间:2023-12-02 23:00:08 25 4
gpt4 key购买 nike

我有传递表的函数:

function isEmpty(properTable){
}

var isEmpty1 = isEmpty($("#daysTable tbody"));
var isEmpty2 = isEmpty($("#daysTable2 tbody"));

而且我不知道如何找出表是否为空或该表有多少行。我需要这样的东西:

function isEmpty(properTable){
if((properTable tr).length > 0){
return false;
}
else{
return true;
}
}

当然它不起作用。

最佳答案

使用 .find()properTable 参数来计算表主体中的行数:

改变

if((properTable tr).length > 0){

if(properTable).find('tr').length === 0){

关于javascript - 如何从传递的表中获取行数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57826072/

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