$.type() 与 typeof()的区分

type是jquery框架判断变量类型的方法:

$.type(‘11‘)  //string

$.type(11)  //number

typeof是js原生判断变量类型的方法:

typeof(‘11‘)   //string

typeof({})  //object

注意:null 与 undefine判断类型的方法不一样

typeof null //返回结果:object

typeof undefine //返回结果:undefine

时间: 2024-12-14 18:10:00