「JavaScript入門」半角数字をチェックする方法
JSコード
function isNumFunc(target) {
if ( target == null )
return;
if( target.match( /[^0-9.,-]+/ ) ) {
alert(“半角数字で入力して下さい。");
return false;
}
return true;
}
Coding Changes the World
JSコード
function isNumFunc(target) {
if ( target == null )
return;
if( target.match( /[^0-9.,-]+/ ) ) {
alert(“半角数字で入力して下さい。");
return false;
}
return true;
}