$("#gridTable").find("tbody tr").not(".jqgfirstrow").each(function (i) {
        var inventoryQty = $(this).find('[aria-describedby="gridTable_InventoryQty"]').text();
        alert(inventoryQty);
            if (inventoryQty == "") {
                hasInventoryQty = false;
            }      
    });
not(".jqgfirstrow")表示排除第一行表头

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-07
  • 2021-07-27
  • 2021-09-19
  • 2022-12-23
  • 2021-05-20
猜你喜欢
  • 2022-01-08
  • 2022-12-23
  • 2022-12-23
  • 2021-12-08
  • 2021-07-17
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案