gpt4 book ai didi

javascript - 在 jquery 中验证数字

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

我尝试在 jquery 中检查非负数。如果其他数字我的函数工作但对于零和非负数它不起作用。这是我的示例 fiddle 。
Sample Fiddle
找不到我的错误。谢谢。

最佳答案

DEMO怎么样? (注意:错误消息是 OP 自己的)

$('#txtNumber').keyup(function() {
var val = $(this).val(), error ="";
$('#lblIntegerError').remove();
if (isNaN(val)) error = "Value must be integer value."
else if (parseInt(val,10) != val || val<= 0) error = "Value must be non negative number and greater than zero";
else return true;
$('#txtNumber').after('<label class="Error" id="lblIntegerError"><br/>'+error+'</label>');
return false;
});

关于javascript - 在 jquery 中验证数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11715555/

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