gpt4 book ai didi

jquery - 使用 jQuery 循环输入字段以找到最高值?

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

我的页面上有许多 input[type=text] 字段,我想循环遍历所有这些字段以查找并返回最高值。

有没有办法用 jQuery 做到这一点?

感谢您的帮助。

最佳答案

这是一种解决方案:

var highest = -Infinity;
$("input[type='text']").each(function() {
highest = Math.max(highest, parseFloat(this.value));
});
console.log(highest);

这是另一种解决方案:

var highest = $("input[type='text']").map(function() {
return parseFloat(this.value);
}).get().sort().pop();

console.log(highest);

关于jquery - 使用 jQuery 循环输入字段以找到最高值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13148839/

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