typeof()的⽤法与运算符⽤法
typeof 运算符
返回⼀个⽤来表⽰表达式的数据类型的字符串。
typeof[()expression[]] ;
expression 参数是需要查类型信息的任意表达式。
说明
typeof 运算符把类型信息当作字符串返回。typeof 返回值有六种可能: "number," "string," "boolean," "object," "function," 和 "undefined." typeof 语法中的圆括号是可选项
<html>
<head>
<title>Debug Example</title>
<script type="text/">
function aFunction(iNum1) {
if (typeof iNum1 == "number" ){
alert("number");
}
if ( typeof iNum1 == "string") {
alert("string");
}
}
aFunction("a");
aFunction(1);
</script>
</head>
<body>
</body>
</html>
在js⾥⽤到数组,⽐如多个名字相同的input, 若是动态⽣成的, 提交时就需要判断其是否是数组.list.length != "undefined" ) {} 这个⽤法有误.
正确的是 if( list.length) != "undefined" ) {}
或 if( !list.length) ) {}
typeof的运算数未定义,返回的就是 "undefined".
运算数为数字 typeof(x) = "number"
typeof的用法
字符串 typeof(x) = "string"
布尔值 typeof(x) = "boolean"
对象,数组和null typeof(x) = "object"
函数 typeof(x) = "function
在js⾥⽤到数组,⽐如多个名字相同(的)input, 若是动态⽣成(的), 提交时就需要判断其是否是数组. list.length != "undefined" ) {}这个⽤法有误.
正确(的)是 if( list.length) != "undefined" ) {}
或 if( !list.length) ) {}
typeof(的)运算数未定义,返回(的)就是 "undefined".
运算数为数字 typeof(x) = "number"
字符串 typeof(x) = "string"
布尔值 typeof(x) = "boolean"
对象,数组和null typeof(x) = "object"
函数 typeof(x) = "function"
typeof 运算符返回⼀个⽤来表⽰表达式(的)数据类型(的)字符串。
可能(的)字符串有:"number"、"string"、"boolean"、"object"、"function" 和 "undefined"。
如:
alert(typeof (123));//typeof(123)返回"number"
alert(typeof ("123"));//typeof("123")返回"string"
<html>
<head>
<title>Debug Example</title>
<script type="text/javascript">
function aFunction(iNum1) {
if (typeof iNum1 == "number" ){
alert("number");
}
if ( typeof iNum1 == "string") {
alert("string");
}
}
aFunction("a");
aFunction(1);
</script>
</head>
<body>
</body>
</html>
typeof 运算符
返回⼀个⽤来表⽰表达式(的)数据类型(的)字符串。
typeof[()expression[]] ;
expression 参数是需要查类型信息(的)任意表达式。
typeof 运算符把类型信息当作字符串返回。typeof 返回值有六种可能: "number," "string," "boolean," "object," "function," 和 "undefined." typeof 语法中(的)圆括号是可选项。typeof运算符介绍:
typeof 是⼀个⼀元运算,放在⼀个运算数之前,运算数可以是任意类型。
它返回值是⼀个字符串,该字符串说明运算数的类型。
你知道下⾯typeof运算的结果吗?
typeof(1);
typeof(NaN);
typeof(Number.MIN_VALUE);
typeof(Infinity);
typeof("123");
typeof(true);
typeof(window);
typeof(document);
typeof(null);
typeof(eval);
typeof(Date);
typeof(sss);
typeof(undefined);
实例
<html>
<head>
<title>www.zhutiai </title>
<script language="JavaScript">
<!--
var x = "Hello", y;
alert("Variable x value is " + typeof(x));
alert("Variable y value is " + typeof(y));
alert("Variable z value is " + typeof(z));
/
/  -->
</script>
</head>
<body>
</body>
</html>
看看你会⼏个?
如果看了以后,不是很明⽩的话,请看下⾯(明⽩的⼈就不⽤往下看了):
typeof是⼀个⼀元运算符,它返回的结果始终是⼀个字符串,对不同的操作数,它返回不同的结果。
具体的规则如下:
⼀、对于数字类型的操作数⽽⾔, typeof 返回的值是 number。⽐如说:typeof(1),返回的值就是number。
上⾯是举的常规数字,对于⾮常规的数字类型⽽⾔,其结果返回的也是number。⽐如typeof(NaN),NaN在
JavaScript中代表的是特殊⾮数字值,虽然它本⾝是⼀个数字类型。
在JavaScript中,特殊的数字类型还有⼏种:
Infinity 表⽰⽆穷⼤特殊值
NaN            特殊的⾮数字值
Number.MAX_VALUE     可表⽰的最⼤数字
Number.MIN_VALUE     可表⽰的最⼩数字(与零最接近)
Number.NaN        特殊的⾮数字值
Number.POSITIVE_INFINITY 表⽰正⽆穷⼤的特殊值
Number.NEGATIVE_INFINITY 表⽰负⽆穷⼤的特殊值
以上特殊类型,在⽤typeof进⾏运算进,其结果都将是number。
⼆、对于字符串类型, typeof 返回的值是 string。⽐如typeof("123")返回的值是string。
三、对于布尔类型, typeof 返回的值是 boolean 。⽐如typeof(true)返回的值是boolean。
四、对于对象、数组、null 返回的值是 object 。⽐如typeof(window),typeof(document),typeof(null)返回的值都是object。
五、对于函数类型,返回的值是 function。⽐如:typeof(eval),typeof(Date)返回的值都是function。
六、如果运算数是没有定义的(⽐如说不存在的变量、函数或者undefined),将返回undefined。⽐如:typeof(sss)、typeof(undefined)都返回undefined。
实例
<html>
<head>
<title>Using typeof to determine the type of variables</title>
<script language="JavaScript1.1">
<!--
var bMyVar = true;
var nMyVar = 35;
var sMyVar = "This is a string";
var uMyVar;
-->
</script>
</head>
<body>
<script language="JavaScript1.1">
<!--
document.writeln("bMyVar = " + typeof(bMyVar));
document.writeln("<br>nMyVar = " + typeof(nMyVar));
document.writeln("<br>sMyVar = " + typeof(sMyVar));
document.writeln("<br>uMyVar = " + typeof(uMyVar));
-->
</script>
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。