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;
}
}