js中判断数据类型的方法 typeof

  <input type="text" onblur="demo(this)"/><br/>
  <input type="number" onblur="demo(this)" /><br/>

  <script>
		function demo(obj){
			alert(obj.value+"  数据类型是  "+typeof(obj.value));
			alert("str"+"  数据类型是  "+typeof("str"));
			alert(111+"  数据类型是  "+typeof(111));
		}
  </script>

  

时间: 2024-10-08 09:04:30

js中判断数据类型的方法 typeof的相关文章

判断js中的数据类型的方法

在 判断js中的数据类型 我们通常会使用typeOf()方法,        typeof   2         输出   number      typeof   null       输出   object        typeof   {}      输出   object        typeof    []     输出   object        typeof   (function(){}) 输出  function        typeof    undefined 

【JS】----判断数据类型的方法

对js中不同数据的布尔值类型总结:false:空字符串:null:undefined:0:NaN.true:除了上面的false的情况其他都为true: 如下: var o = { 'name':'lee' }; var a = ['reg','blue']; function checkBoolean(a){ if(a){ return true; }else{ return false; } } console.log(checkBoolean('')); //false console.l

[JS]js中判断变量类型函数typeof的用法汇总

1.作用: typeof 运算符返回一个用来表示表达式的数据类型的字符串. 可能的字符串有:"number"."string"."boolean"."object"."function" 和 "undefined". 2.常用返回值说明 表达式 返回值 typeof undefined 'undefined' typeof null 'object' typeof true 'boole

js中判断按键的方法

1 // 通过证件号码查询人员基本信息,响应回车事件的js函数, 2 $('#sfwwsss [name="AAC002"]').keydown(function(event) { 3 var curKey = event.which; 4 // 事件代码为“回车” ——查询人员基本信息 5 if(curKey==13){ 6 ryjbxx_query(); 7 } 8 }); 1 通过传入的event.which这个属性来进行判断.比如“回车”的值就是13 .

判断js中的数据类型的几种方法

判断js中的数据类型有一下几种方法:typeof.instanceof. constructor. prototype. $.type()/jquery.type(),接下来主要比较一下这几种方法的异同. 先举几个例子: 1 var a = "iamstring."; 2 var b = 222; 3 var c= [1,2,3]; 4 var d = new Date(); 5 var e = function(){alert(111);}; 6 var f = function()

转:判断js中的数据类型的几种方法

判断js中的数据类型有一下几种方法:typeof.instanceof. constructor. prototype. $.type()/jquery.type(),接下来主要比较一下这几种方法的异同. 先举几个例子: var a = "iamstring."; var b = 222; var c= [1,2,3]; var d = new Date(); var e = function(){alert(111);}; var f = function(){this.name=&

如何判断js中的数据类型?

js六大数据类型:number.string.object.Boolean.null.undefined string: 由单引号或双引号来说明,如"string" number: 什么整数啊浮点数啊都叫数字,你懂的~ Boolean:  就是true和false啦 undefined: 未定义,就是你创建一个变量后却没给它赋值~ null:  故名思久,null就是没有,什么也不表示 object: 这个我也很难解释的说.就是除了上面五种之外的类型 如何判断js中的数据类型:type

如何判断js中的数据类型

如何判断js中的数据类型:typeof.instanceof. constructor. prototype方法比较 如何判断js中的类型呢,先举几个例子: var a = "iamstring."; var b = 222; var c= [1,2,3]; var d = new Date(); var e = function(){alert(111);}; var f = function(){this.name="22";}; 最常见的判断方法:typeof

[转]如何判断js中的数据类型

原文地址:http://blog.sina.com.cn/s/blog_51048da70101grz6.html 如何判断js中的数据类型:typeof.instanceof. constructor. prototype方法比较 如何判断js中的类型呢,先举几个例子: var a = "iamstring."; var b = 222; var c= [1,2,3]; var d = new Date(); var e = function(){alert(111);}; var