「JavaScript入門」isNaN() 関数のサンプル

JSコード
var IdVerify = function() {
var num = document.getElementById('empId’).value;
if(!isNaN(num)){
alert(“番号:" + num);
} else {
alert(“番号ではない");
}
}

htmlコード
<input type="text" id="empId" name="empId">
<input type="button" value="確認" onclick="IdVerify();">

JavaScript

Posted by arkgame