数据类型判断数据类型共有五种判断方法
数据类型共有五种判断方法分别是:typeof、instanceof、constructor、Object.prototype.toString.call()、jquery.type()typeof typeof对于基本数据类型判断是没有问题的,但是遇到引用数据类型(如:Array)是不起作用的 typeof '123' // string typeof 1 // number typeof true // boolean ...