gpt4 book ai didi

Javascript:验证字段:不为空且仅包含数字

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:35:25 26 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Validate numbers in JavaScript - IsNumeric()

您好,我正在尝试使用 javascript 验证一个字段,以确保该字段不为空且仅包含数字

我正在使用 document.getElementById 获取字段的值,然后使用此函数对其进行验证:

function isNumeric(elem, message, messsage2)
{
if(isNaN(elem))
{
alert(message2);
return false;
}
else if (elem == null || elem =="")
{
alert(message);
return false;
}
return true;
}

但是这个函数仍然允许我在应该有数字的地方输入字母

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