javascript中常用数据类型判断方法有:typeof、instanceof、constructor、Object.prototype.toString.call()
typeof- - -可以检测出基本数据类型(除了null)
检测方法: typeof xx
优点:使用简单
缺点:复杂类型检测出来都是 object,null 也是 object
instanceof 原型链检测
检测方法:xx instanceof yy - - -检测 xx 的原型链上是否 存在 yy
优点:能检测出引用类型
缺点:instanceof 不能检测出基本类型,且不能跨 iframe
String 和 Date 对象属于 Object 对象
constructor 构造函数检测
检测方法:xx.constructor- - -返回 xx 的 构造函数
优点:基本能检测所有的类型(除了 null 和 undefined )
缺点:constructor 容易被修改,也不能跨iframe
Object.prototype.toString.call()
检测方法:Object.prototype.toString.call(xx)
优点:可检测所有的类型
缺点:IE6下,undefined 和 null 均为 Object
注意以下特殊情况: