gpt4 book ai didi

javascript - 如果所有 TD 都有文本,则将 boolVar 设置为 true,否则将其设置为 false

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

我有这个 HTML 代码:

<table id="contenedorFabricantes" style="" class="table table-condensed">
<thead>
<tr class="tableHead">
<th><input type="checkbox" name="toggleCheckboxFabricantes" id="toggleCheckboxFabricantes"></th>
<th>Fabricante</th>
<th>Dirección</th>
<th>País</th>
<th>Teléfono</th>
</tr>
</thead>
<tbody id="fabricanteBody">
<tr>
<td><input type="checkbox" value="1"></td>
<td>Distribuidor1</td><td>8768 Dewy Apple Wynd, Foxtrap, Montana</td>
<td id="fabTd-1" class="has_pais"></td>
<td>4061782946</td>
<td><a data-backdrop="static" data-target="#addPaisesFabricante" data-toggle="modal" id="1" class="editable-pais" href="#"><i title="" data-placement="top" data-toggle="tooltip" class="fa fa-plus-circle" data-original-title="Agregar países"></i></a></td>
</tr>
<tr>
<td><input type="checkbox" value="1"></td>
<td>Distribuidor1</td><td>8768 Dewy Apple Wynd, Foxtrap, Montana</td>
<td id="fabTd-1" class="has_pais">Country1, Country2</td>
<td>4061782946</td>
<td><a data-backdrop="static" data-target="#addPaisesFabricante" data-toggle="modal" id="1" class="editable-pais" href="#"><i title="" data-placement="top" data-toggle="tooltip" class="fa fa-plus-circle" data-original-title="Agregar países"></i></a></td>
</tr>
</tbody>

如果至少一个 td.has_pais 没有表示 "" 的文本,我会尝试将 boolVar 设置为 false,这就是我正在做:

$(document).ready(function(){
var boolVar = true,
hasPaises = $('#fabricanteBody tr td:nth-child(3)').each(function () {
$(this).text() === "" ? boolVar = false : boolVar = true;
});

console.log(boolVar);
});

但是我做错了什么,因为 boolVar 得到 true 并且提供的 HTML 示例应该是 false,谁能告诉我哪里失败了?

最佳答案

您可以使用:empty()并检查集合的长度

var boolVar = $('#fabricanteBody .has_pais:empty').length > 0;

关于javascript - 如果所有 TD 都有文本,则将 boolVar 设置为 true,否则将其设置为 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27174720/

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