本文介绍了检查值是jquery中的整数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好我想查看用户输入的值是否是使用jquery的有效整数
我尝试过:
i试过这个,但似乎总是返回 true
Hi i want to check to see if value entered by the user is a valid integer using jquery
What I have tried:
i have tried this, but it always seems to return true
if ((manageridEntered === "") || ($.isNumeric(manageridEntered))) {
success = false;
}
推荐答案
if(Math.floor(manageridEntered) == manageridEntered &&
这篇关于检查值是jquery中的整数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!