标签:
type是jquery框架判断变量类型的方法:
$.type(‘11‘) //string
$.type(11) //number
typeof是js原生判断变量类型的方法:
typeof(‘11‘) //string
typeof({}) //object
注意:null 与 undefine判断类型的方法不一样
typeof null //返回结果:object
typeof undefine //返回结果:undefine
标签:
原文地址:http://www.cnblogs.com/wenxiangxu/p/5667644.html