http://i.cnblogs.com/EditArticles.aspx?postid=4198722&update=1
instanceof和typeof都能用来判断一个变量是否为空或是什么类型的变量。
typeof(obj)用以获取一个变量的类型,typeof一般只能返回如下几个结果:number,boolean,string,function,object,undefined。
1 //typeof与instanceof的区别 2 function myFunTypeof() 3 { 4 var i; 5 //alert(typeof(i));//undefined 6 i="1234"; 7 //alert(typeof(i));//string 8 i=123; 9 //alert(typeof(i));//number 10 i=false; 11 //alert(typeof(i));//boolean 12 //alert(typeof(BiBaoTest));//function 13 var a=new Array(); 14 //alert(typeof(i));//Object 15 //i={"1","2"}; 16 alert(typeof(a));//Object 17 alert((a instanceof Array)?"Array":"Object");//Array 18 //看一个具体的例子 19 function test(){}; 20 var a1=new test(); 21 alert(a1 instanceof test)//true。 22 }
如:
1 function test(){}; 2 2 var a1=new test(); 3 3 alert(a1 instanceof test)//true。 4 4 alert(typeof(a1));//object
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。