码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-07-13 21:04:47      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

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

$.type(‘11‘)  //string

$.type(11)  //number

 

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

typeof(‘11‘)   //string

typeof({})  //object

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

typeof null //返回结果:object

typeof undefine //返回结果:undefine

 

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

标签:

原文地址:http://www.cnblogs.com/wenxiangxu/p/5667644.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!