博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(转)JavaScript中判断对象类型的种种方法
阅读量:5273 次
发布时间:2019-06-14

本文共 3051 字,大约阅读时间需要 10 分钟。

我们知道,JavaScript中检测对象类型的运算符有:typeof、instanceof,还有对象的constructor属性: 1) typeof 运算符 typeof 是一元运算符,返回结果是一个说明运算数类型的字符串。如:"number","string","boolean","object","function","undefined"(可用于判断变量是否存在)。 但 typeof 的能力有限,其对于Date、RegExp类型返回的都是"object"。如:

1
2
3
typeof 
{};
// "object"
typeof 
[];
// "object"
typeof 
new 
Date();
// "object"

所以它只在区别对象和原始类型的时候才有用。要区一种对象类型和另一种对象类型,必须使用其他的方法。如:instanceof 运算符或对象的 constructor 属。 2)instanceof 运算符。 instanceof 运算符要求其左边的运算数是一个对象,右边的运算数是对象类的名字或构造函数。如果 object 是 class 或构造函数的实例,则 instanceof 运算符返回 true。如果 object 不是指定类或函数的实例,或者 object 为 null,则返回 false。如:

1
2
3
4
[]
instanceof 
Array;
// true
[]
instanceof 
Object;
// true
[]
instanceof 
RegExp;
// false
new 
Date
instanceof 
Date;
// true

所以,可以用instanceof运算符来判断对象是否为数组类型:

1
2
3
function 
isArray(arr){
    
return 
arr
instanceof 
Array;
}

3)constructor 属性。 JavaScript中,每个对象都有一个constructor属性,它引用了初始化该对象的构造函数,常用于判断未知对象的类型。如给定一个求知的值 通过typeof运算符来判断它是原始的值还是对象。如果是对象,就可以使用constructor属性来判断其类型。所以判断数组的函数也可以这样写:

1
2
3
function 
isArray(arr){
    
return 
typeof 
arr ==
"object" 
&& arr.constructor == Array;
}

很多情况下,我们可以使用instanceof运算符或对象的constructor属性来检测对象是否为数组。例如很多JavaScript框架就是使用这两种方法来判断对象是否为数组类型。 但是检测在跨框架(cross-frame)页面中的数组时,会失败。原因就是在不同框架(iframe)中创建的数组不会相互共享其prototype属性。例如:

在Ajaxian上看到了一种精确的检测方法,跨原型链调用toString()方法:Object.prototype.toString()。可以解决上面的跨框架问题。 当Object.prototype.toString(o)执行后,会执行以下步骤: 1)获取对象o的class属性。 2)连接字符串:"[object "+结果(1)+"]" 3)返回 结果(2) 例如:

Object.prototype.toString.call([]); // 返回 "[object Array]"Object.prototype.toString.call(/reg/ig); // 返回 "[object RegExp]"

这样,我们就可以写一个健壮的判断对象是否为数组的函数:

function isArray(arr){    return Object.prototype.toString.call(arr) === "[object Array]";}

此种方法得到国外多个javaScript大师的认可,在即将发布的jQuery 1.3中将使用这种方法来检测数组。 prototype.js的一个维护者写了下面这个函数,用于获取对象的类型名

/** * Returns internal [[Class]] property of an object * * Ecma-262, 15.2.4.2 * Object.prototype.toString( ) * * When the toString method is called, the following steps are taken:  * 1. Get the [[Class]] property of this object.  * 2. Compute a string value by concatenating the three strings "[object ", Result (1), and "]".  * 3. Return Result (2). * * __getClass(5); // => "Number" * __getClass({}); // => "Object" * __getClass(/foo/); // => "RegExp" * __getClass(''); // => "String" * __getClass(true); // => "Boolean" * __getClass([]); // => "Array" * __getClass(undefined); // => "Window" * __getClass(Element); // => "Constructor" * */function __getClass(object){    return Object.prototype.toString.call(object).match(/^\[object\s(.*)\]$/)[1];};

扩展一下,用于检测各种对象类型:

var is ={    types : ["Array", "Boolean", "Date", "Number", "Object", "RegExp", "String", "Window", "HTMLDocument"]};for(var i = 0, c; c = is.types[i ++ ]; ){    is[c] = (function(type){        return function(obj){           return Object.prototype.toString.call(obj) == "[object " + type + "]";        }    )(c);}alert(is.Array([])); // truealert(is.Date(new Date)); // truealert(is.RegExp(/reg/ig)); // true

转载自:http://www.cnblogs.com/flyjs/archive/2012/02/20/2360504.html

转载于:https://www.cnblogs.com/summer99891112/p/3702813.html

你可能感兴趣的文章
bzoj1468 Tree
查看>>
岁尾年头感怀
查看>>
hdu 5207 Greatest Greatest Common Divisor(筛法求公约数)
查看>>
运算符有感
查看>>
项目角色职责分配表
查看>>
【VBA】查看当前窗口的宽与高
查看>>
Spark计算模型RDD
查看>>
设置dataGridView单元格颜色、字体、ToolTip、字体颜色
查看>>
wx-charts 微信小程序图表 -- radarChart C# .net .ashx 测试
查看>>
对项目重命名
查看>>
Scrapy框架简介及小项目应用
查看>>
tkinter学习三
查看>>
.ctor,.cctor 以及 对象的构造过程
查看>>
CentOS自带定时任务crontab
查看>>
基因组拼接中常见的名词解释
查看>>
##CS3动画效果
查看>>
nginx 配置 http重定向到https
查看>>
webstocket 聊天
查看>>
宽度显示banner
查看>>
java 定时任务-servlet
查看>>