我使用 HTML 和 javascript 中的表单。我希望只有当用户输入一个 信并单击 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;
}
}