js 判断数据类型的几种方法


Posted in Javascript onJanuary 13, 2017

判断js中的数据类型有一下几种方法:typeof、instanceof、 constructor、 prototype、 $.type()/jquery.type(),接下来主要比较一下这几种方法的异同。

先举几个例子:

var a = "iamstring.";
var b = 222;
var c= [1,2,3];
var d = new Date();
var e = function(){alert(111);};
var f = function(){this.name="22";};

1、最常见的判断方法:typeof

alert(typeof a)  ------------> string
alert(typeof b)  ------------> number
alert(typeof c)  ------------> object
alert(typeof d)  ------------> object
alert(typeof e)  ------------> function
alert(typeof f)  ------------> function

其中typeof返回的类型都是字符串形式,需注意,例如:

alert(typeof a == "string") -------------> true
alert(typeof a == String) ---------------> false

另外typeof 可以判断function的类型;在判断除Object类型的对象时比较方便。 

2、判断已知对象类型的方法: instanceof

alert(c instanceof Array) ---------------> true
alert(d instanceof Date)
alert(f instanceof Function) ------------> true
alert(f instanceof function) ------------> false

注意:instanceof 后面一定要是对象类型,并且大小写不能错,该方法适合一些条件选择或分支。   

3、根据对象的constructor判断: constructor

alert(c.constructor === Array) ----------> true
alert(d.constructor === Date) -----------> true
alert(e.constructor === Function) -------> true

注意: constructor 在类继承时会出错

eg:

function A(){};
   function B(){};
   A.prototype = new B(); //A继承自B
   var aObj = new A();
   alert(aobj.constructor === B) -----------> true;
   alert(aobj.constructor === A) -----------> false;

而instanceof方法不会出现该问题,对象直接继承和间接继承的都会报true:

alert(aobj instanceof B) ----------------> true;
   alert(aobj instanceof B) ----------------> true;

言归正传,解决construtor的问题通常是让对象的constructor手动指向自己:

aobj.constructor = A; //将自己的类赋值给对象的constructor属性
   alert(aobj.constructor === A) -----------> true;
   alert(aobj.constructor === B) -----------> false; //基类不会报true了;

4、通用但很繁琐的方法: prototype

alert(Object.prototype.toString.call(a) === ‘[object String]') -------> true;
alert(Object.prototype.toString.call(b) === ‘[object Number]') -------> true;
alert(Object.prototype.toString.call(c) === ‘[object Array]') -------> true;
alert(Object.prototype.toString.call(d) === ‘[object Date]') -------> true;
alert(Object.prototype.toString.call(e) === ‘[object Function]') -------> true;
alert(Object.prototype.toString.call(f) === ‘[object Function]') -------> true;

大小写不能写错,比较麻烦,但胜在通用。

5、无敌万能的方法:jquery.type()

如果对象是undefined或null,则返回相应的“undefined”或“null”。

jQuery.type( undefined ) === "undefined"
jQuery.type() === "undefined"
jQuery.type( window.notDefined ) === "undefined"
jQuery.type( null ) === "null"

如果对象有一个内部的[[Class]]和一个浏览器的内置对象的 [[Class]] 相同,我们返回相应的 [[Class]] 名字。 (有关此技术的更多细节。 )

jQuery.type( true ) === "boolean"
jQuery.type( 3 ) === "number"
jQuery.type( "test" ) === "string"
jQuery.type( function(){} ) === "function"
jQuery.type( [] ) === "array"
jQuery.type( new Date() ) === "date"
jQuery.type( new Error() ) === "error" // as of jQuery 1.9
jQuery.type( /test/ ) === "regexp"

其他一切都将返回它的类型“object”。

通常情况下用typeof 判断就可以了,遇到预知Object类型的情况可以选用instanceof或constructor方法,实在没辙就使用$.type()方法。

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持三水点靠木!

Javascript 相关文章推荐
document对象execCommand的command参数介绍
Aug 01 Javascript
用cssText批量修改样式
Aug 29 Javascript
js href的用法
May 13 Javascript
基于jQuery的仿flash的广告轮播代码
Nov 04 Javascript
JS实现选中当前菜单后高亮显示的导航条效果
Oct 15 Javascript
jQuery代码实现对话框右上角菜单带关闭×
May 03 Javascript
jQuery代码性能优化的10种方法
Jun 21 Javascript
解决BootStrap Fileinput手机图片上传显示旋转问题
Jun 01 Javascript
js replace替换字符串同时替换多个方法
Nov 27 Javascript
Vue.directive 实现元素scroll逻辑复用
Nov 29 Javascript
Element的el-tree控件后台数据结构的生成以及方法的抽取
Mar 05 Javascript
分享一款超好用的JavaScript 打包压缩工具
Apr 26 Javascript
AngularJS 文件上传控件 ng-file-upload详解
Jan 13 #Javascript
BootStrap表单验证实例代码
Jan 13 #Javascript
js实现随机抽选效果、随机抽选红色球效果
Jan 13 #Javascript
bootstrap滚动监控器使用方法解析
Jan 13 #Javascript
微信小程序 页面之间传参实例详解
Jan 13 #Javascript
bootstrap下拉菜单使用方法解析
Jan 13 #Javascript
js数组与字符串常用方法总结
Jan 13 #Javascript
You might like
PHP 的ArrayAccess接口 像数组一样来访问你的PHP对象
2010/10/12 PHP
微信公众号开发之获取位置信息php代码
2018/06/13 PHP
Laravel框架定时任务2种实现方式示例
2018/12/08 PHP
PHP PDO和消息队列的个人理解与应用实例分析
2019/11/25 PHP
类似框架的js代码
2006/11/09 Javascript
javascript options属性集合操作代码
2009/12/28 Javascript
jquery 插件学习(二)
2012/08/06 Javascript
Bootstrap进度条组件知识详解
2016/05/01 Javascript
bootstrap fileinput组件整合Springmvc上传图片到本地磁盘
2017/05/11 Javascript
JavaScript 值类型和引用类型的初次研究(推荐)
2017/07/19 Javascript
javascript 通过键名获取键盘的keyCode方法
2017/12/31 Javascript
Vue中div contenteditable 的光标定位方法
2018/08/25 Javascript
微信小程序搭建(mpvue+mpvue-weui+fly.js)的详细步骤
2018/09/18 Javascript
微信小程序如何获取手机验证码
2018/11/04 Javascript
tracking.js页面人脸识别插件使用方法
2020/04/16 Javascript
详解如何写出一个利于扩展的vue路由配置
2019/05/16 Javascript
解决vue 子组件修改父组件传来的props值报错问题
2019/11/09 Javascript
解决Antd Table组件表头不对齐的问题
2020/10/27 Javascript
JavaScript的一些小技巧分享
2021/01/06 Javascript
[06:16]第十四期-国士无双绝地翻盘之撼地神牛
2014/06/24 DOTA
NumPy 基本切片和索引的具体使用方法
2019/04/24 Python
python sklearn库实现简单逻辑回归的实例代码
2019/07/01 Python
python日期与时间戳的各种转换示例
2020/02/12 Python
Python3标准库glob文件名模式匹配的问题
2020/03/13 Python
什么是python的必选参数
2020/06/21 Python
html5指南-1.html5全局属性(html5 global attributes)深入理解
2013/01/07 HTML / CSS
浅谈HTML5新增和废弃的标签
2019/04/28 HTML / CSS
经济实惠的豪华背包和行李袋:Packs Project
2018/10/17 全球购物
网络安全方面的面试题
2015/11/04 面试题
怎样有效的进行自我评价
2013/10/06 职场文书
教师自荐书
2013/10/08 职场文书
广播体操口号
2014/06/18 职场文书
个人主要事迹材料
2014/08/26 职场文书
见习报告的格式
2014/10/31 职场文书
javascript数组includes、reduce的基本使用
2021/07/02 Javascript
mysql字段为NULL索引是否会失效实例详解
2022/05/30 MySQL