gpt4 book ai didi

javascript - 检查输入是数字还是字母javascript

转载 作者:IT王子 更新时间:2023-10-29 02:54:01 24 4
gpt4 key购买 nike

我在 HTML 和 javascript 中使用表单。我希望仅当用户输入 LETTER 并单击 submit 时才会弹出警报。

所以我有 HTML 代码:

<form name="myForm" action="" onsubmit="return checkInp()" method="post">
First name: <input type="text" name="age">
<input type="submit" value="Submit">

和javascript代码:

function checkInp()
{
var x=document.forms["myForm"]["age"].value;
if (x consists of any letters) // this is the code I need to change
{
alert("Must input numbers");
return false;
}
}

最佳答案

您可以使用 isNaN 函数来确定值是否未转换为数字。示例如下:

function checkInp()
{
var x=document.forms["myForm"]["age"].value;
if (isNaN(x))
{
alert("Must input numbers");
return false;
}
}

关于javascript - 检查输入是数字还是字母javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18042133/

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