typeof返回一个表达式的数据类型的字符串,返回结果为js基本的数据类型,包括number,boolean,string,object,undefined,function.语法为typeof(data) 或 typeof data

instanceof则为判断一个对象是否为某一数据类型,或一个变量是否为一个对象的实例;返回boolean类型
语法为 o instanceof A

以下为综合实例:


 1详解js中typeof、instanceof与constructor<script type="text/javascript">
 2详解js中typeof、instanceof与constructor<!
 3详解js中typeof、instanceof与constructoralert("typeof(1):" + typeof(1));//number
 4详解js中typeof、instanceof与constructoralert("typeof(\"abc\"):" + typeof("abc"));//string
 5详解js中typeof、instanceof与constructoralert("typeof(true):" +typeof(true));//boolean
 6详解js中typeof、instanceof与constructoralert("typeof(2009-2-4):" + typeof(2009-2-4));//number
 7详解js中typeof、instanceof与constructoralert("typeof(\"2009-2-4\"):" + typeof("2009-2-4"));//string
 8详解js中typeof、instanceof与constructoralert("typeof(m):" + typeof(m));//undefined
 9详解js中typeof、instanceof与constructorvar d=new Date();
10详解js中typeof、instanceof与constructoralert("typeof(d):" + typeof(d));//object
11script>

查看效果

js中constructor较少使用,如果不是搜索到相关construtor相关的资料,我之前从没有注意到js还有这个函数。

使用typeof的一个不好的地方就是它会把Array还有用户自定义函数都返回为object

1详解js中typeof、instanceof与constructor<script type="text/javascript">
2详解js中typeof、instanceof与constructor<!
3详解js中typeof、instanceof与constructorvar j=2;
4详解js中typeof、instanceof与constructoralert(typeof(j));//number
5详解js中typeof、instanceof与constructoralert("j.constructor:" + j.constructor);//function …
6详解js中typeof、instanceof与constructoralert(typeof(j.constructor));//function
7详解js中typeof、instanceof与constructor//–>
8详解js中typeof、instanceof与constructor</script>

 

查看演示

详解js中typeof、instanceof与constructor

可以看到js.constructor返回的是一些字符串,大家都应该能看到这是一个function类型,此例为Number()为Number对象的构造函数,Number()用于将其参数转换为数字number类型,并返回转换结果(若不能转换则返回 NaN)。

因此在以后的js判断数据类型时可以使用以下方式来得到其详细数据类型

1}

这里还要注意,constructor只能对已有变量进行判断,而typeof则可对未声明变量进行判断(返回undefined)。

原文来自:http://www.51obj.cn/

相关文章: