JavaScript判断变量是对象还是数组的方法
2019-12-25 16:00:26来源:爱站网 阅读 ()
JavaScript判断变量是对象还是数组的方法,要怎么判断呢?其实在使用typeof进行判断的时候一般显示的返回值为“object”,今天是爱站技术频道小编分享的方法,希望能帮到您。
typeof都返回object
在JavaScript中所有数据类型严格意义上都是对象,但实际使用中我们还是有类型之分,如果要判断一个变量是数组还是对象使用typeof搞不定,因为它全都返回object
var o = { 'name':'lee' };
var a = ['reg','blue'];
?
document.write( ' o typeof is ' + typeof o);
document.write( ' <br />');
document.write( ' a typeof is ' + typeof a);
执行:
?
?
o typeof is object
a typeof is object
因此,我们只能放弃这种方法,要判断是数组or对象有两种方法
?
第一,使用typeof加length属性
数组有length属性,object没有,而typeof数组与对象都返回object,所以我们可以这么判断
var o = { 'name':'lee' };
var a = ['reg','blue'];
?
var getDataType = function(o){
??? if(typeof o == 'object'){
??????? if( typeof o.length == 'number' ){
??????????? return 'Array';
??????? }else{
??????????? return 'Object';???
??????? }
??? }else{
??????? return 'param is no object type';
??? }
};
?
alert( getDataType(o) );??? // Object
alert( getDataType(a) );??? // Array
alert( getDataType(1) );??? // param is no object type
alert( getDataType(true) ); // param is no object type
alert( getDataType('a') );? // param is no object type
?
第二,使用instanceof
使用instanceof可以判断一个变量是不是数组,如:
var o = { 'name':'lee' };
var a = ['reg','blue'];
?
alert( a instanceof Array );? // true
alert( o instanceof Array );? // false
也可以判断是不是属于object
?
?
var o = { 'name':'lee' };
var a = ['reg','blue'];
?
alert( a instanceof Object );? // true
alert( o instanceof Object );? // true
但数组也是属于object,所以以上两个都是true,因此我们要利用instanceof判断数据类型是对象还是数组时应该优先判断array,最后判断object
?
?
var o = { 'name':'lee' };
var a = ['reg','blue'];
?
var getDataType = function(o){
??? if(o instanceof Array){
??????? return 'Array'
??? }else if( o instanceof Object ){
??????? return 'Object';
??? }else{
??????? return 'param is no object type';
??? }
};
?
alert( getDataType(o) );??? // Object
alert( getDataType(a) );??? // Array
alert( getDataType(1) );??? // param is no object type
alert( getDataType(true) ); // param is no object type
alert( getDataType('a') );? // param is no object type
如果你不优先判断Array,比如:
?
?
var o = { 'name':'lee' };
var a = ['reg','blue'];
?
var getDataType = function(o){
??? if(o instanceof Object){
??????? return 'Object'
??? }else if( o instanceof Array ){
??????? return 'Array';
??? }else{
??????? return 'param is no object type';
??? }
};
?
alert( getDataType(o) );??? // Object
alert( getDataType(a) );??? // Object
alert( getDataType(1) );??? // param is no object type
alert( getDataType(true) ); // param is no object type
alert( getDataType('a') );? // param is no object type
那么数组也会被判断为object。
爱站技术频道有大家想要学习的知识,希望阅读完本文的朋友,在学习这方面知识上,能更进一步。
原文链接:https://js.aizhan.com/develop/JavaScript/10869.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- javascript面向对象入门基础详细介绍 2020-03-29
- JavaScript函数表达式详解及实例 2020-03-25
- 如何用javascript连接access数据库 2020-03-20
- js中去掉字串左右空格 2020-03-20
- Javascript中的经典技巧 2020-03-20
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash