gpt4 book ai didi

jquery - 从表格单元格内容中获取最高数字

转载 作者:行者123 更新时间:2023-12-03 22:29:32 24 4
gpt4 key购买 nike

我试图从具有特定类别的表格单元格中获取最大数字(在下面的示例中为 8)。我假设我必须将其转换为数组,然后对其进行 math.max ?

这是我的 HTML 代码:

<table>
<tr>
<td class="id">3</td>
</tr>
<tr>
<td class="id">8</td>
</tr>
<tr>
<td class="id">4</td>
</tr>
</table>

这确实是我尝试过的,但它只返回 384。所以 math.max 不起作用。

var varID = $('.id').text();
var varArray= jQuery.makeArray(varID);
alert (varArray);

最佳答案

我认为最好的方法是:

var max = 0;
$('.id').each(function()
{
$this = parseInt( $(this).text() );
if ($this > max) max = $this;
});
alert(max);

jsfiddle example

关于jquery - 从表格单元格内容中获取最高数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12556647/

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