javascript 判断是否为数字

http://www.yxl.cn/Info/20051231,124813,7012.html
isNaN 函数
isNaN(expression:Object) : Boolean

计算参数,如果值为 NaN(非数字),则返回 true。此函数可用于检查一个数学表达式是否成功地计算为一个数字。

可用性:Flash Player 5;ActionScript 1.0

参数
expression:Object - 要计算的布尔值、变量或其它表达式。

返回
Boolean - 一个布尔值。



例子:
  
if(isNaN(document.login.imgcode.value)){
   alert('验证码必须是数字!')
   document.login.imgcode.focus();
   return false;
}

你可能感兴趣的:(JavaScript,html,Flash,actionscript)