为什么要用Object.prototype.toString而不是Function.prototype.toString或者其它?这是和他们的toString解释方式有关系的。下面是ECMA中对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)
代码如下:
因此我们用如下代码来检测数组:
var arr = []; return arr instanceof Array;
如果有其他好的方法不妨贴出来。 原文链接:https://www.f2er.com/js/55017.html 代码如下:
这种方式既解决了instanceof存在的跨页面问题,也解决了属性检测方式所存在的问题,实在是一种妙招,一个很好的解决方案。
除此之外,这种解决办法也可以应用于判断Date,Function等类型的对象。
<div class="codebody" id="code25709">另外还有几个方法:
<div class="codetitle"><a style="CURSOR: pointer" data="25709" class="copybut" id="copybut25709" onclick="doCopy('code25709')"> 代码如下:
var arr = []; return arr instanceof Array;