使用typeof算法 typeof的运算数未定义,返回的就是 "undefined". 下面定义x为运算数: 有一下5种情况; 运算数为数字 typeof(x) 返回的就是 "number"; 字符串 typeof(x) 返回的就是 "string"; 布尔值 typeof(x) 返回的就是 "boolean"; 对象、数组 、null 时: typeof(x) 返回的就是 "object"; 函数 typeof(x) 返回的就是 "function"。 例如: 复制代码 代码如下: <P> var x=123456; <P> alert( typeof(x));//弹出“number”。 <P>