こんにちは、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;
}
ただし、この機能では、数字があるはずの場所に文字を入力できます