📜  jQuery isNumeric()方法

📅  最后修改于: 2020-11-27 01:21:56             🧑  作者: Mango

jQuery isNumeric()方法

jQuery中的isNumeric()方法用于确定传递的参数是否为数字值。

isNumeric()方法返回一个布尔值。如果给定参数是数字值,则该方法返回true;否则,该方法返回true。否则,它返回false。此方法很有用,因为它减少了代码行。对于十六进制数,八进制整数,负数,十进制数以及指数字符串,它也返回true。

句法

$.isNumeric(argument);

此方法接受单个强制参数,该参数可以是任何类型。上面语法中的parameter参数代表要测试的值。

让我们看一些插图以了解isNumeric()方法的概念。

例1

在此示例中,我们将一些值传递给isNumeric()方法,以检查这些值是否为数字。如果传递的值本质上是数字,则isNumeric()方法将返回true,否则将返回false。

此处,有两个div元素,其中第一个div元素显示isNumeric()方法为其返回true的值的集合。第二个div元素显示了isNumric()方法返回false的一组值。




 jQuery isNumeric() method 




It is an example of using the isNumeric() method.

The isNumeric() method returns true for the following values.

The isNumeric() method returns false for the following values.

输出量

执行完上述代码后,输出将为-

例2

在此示例中,我们使用isNumeric()方法检查用户输入的值是否为数字。这里,有一个用于接受用户输入的文本字段,以及一个用于检查输入的按钮。我们必须在给定的文本字段中输入一个值,然后我们必须单击给定的按钮来检查输入的值是否为数字。




 jQuery isNumeric() method 



It is an example of using the isNumeric() method.

Enter any value in the below textfield.

Enter a value:

Click the given button to check whether the entered value is numeric or not.

输出量

执行完上述代码后,输出将为-

输入数值并单击给定的按钮时,输出将为-

输入非数字值并单击给定的按钮时,输出将为-