如何选择所有值大于 0 的输入?

发布于 2024-11-02 17:03:39 字数 259 浏览 1 评论 0原文

我有一堆带有数值的文本输入:

<input type='text' value='25' />
<input type='text' value='0' />
<input type='text' value='45' />
<input type='text' value='-2' />
.
. etc...

我只需要选择那些值大于 0 的输入。如何使用 jQuery 来做到这一点?

I have a bunch of text inputs with numeric values:

<input type='text' value='25' />
<input type='text' value='0' />
<input type='text' value='45' />
<input type='text' value='-2' />
.
. etc...

I need to select only those inputs with values greater than 0. How can I do that using jQuery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

挥剑断情 2024-11-09 17:03:39

像这样,使用 .filter()

$('input[type="text"]').filter(function() {
    return parseInt($(this).val(), 10) > 0;
});

Something like this, using .filter():

$('input[type="text"]').filter(function() {
    return parseInt($(this).val(), 10) > 0;
});
许久 2024-11-09 17:03:39
//select all text type inputs
$('input[type=text]').each(function(){
    var val = parseInt($(this).val());
    if(val > 0)
        //your logic here
});
//select all text type inputs
$('input[type=text]').each(function(){
    var val = parseInt($(this).val());
    if(val > 0)
        //your logic here
});
↙温凉少女 2024-11-09 17:03:39

另一种方式,主要是为了好玩:

// get array of values
var arr = $('input').map(function() {
    return parseInt(this.value, 10);
}).get();

// use John Resig's uberfast way of getting max value
// http://ejohn.org/blog/fast-javascript-maxmin/
alert(Math.max.apply(Math, arr));

在这里尝试一下。

注意 - 上面的代码在没有 parseInt 的情况下也能正常工作。

Another way, for fun, mostly:

// get array of values
var arr = $('input').map(function() {
    return parseInt(this.value, 10);
}).get();

// use John Resig's uberfast way of getting max value
// http://ejohn.org/blog/fast-javascript-maxmin/
alert(Math.max.apply(Math, arr));

Try it out here.

Note - the above works just fine without parseInt.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文