JavaScript中的typeof

js中的 typeof 操作符返回一个字符串,表示未经计算的操作数的类型。

其中null、字符串对象、数字对象、布尔对象、日期、数组、正则返回结果都为object,可见typeof返回结果并不精确

测试代码如下:

 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta charset="UTF-8">
<title>typeof</title>
<script type="text/javascript">
window.onload = _pageLoaded; /**
* 页面加载完毕后执行的函数
* @private
*/
function _pageLoaded(){
function _fn() {
}
var obj = {name:'pine',age:28};
var arr = [1,2,3];
var reg = /^123$/;
var element = document.getElementById('table1');//元素节点
var node1 = document.getElementById('node1').firstChild;//文本节点
var node2 = document.getElementById('node2').firstChild;//空的文本节点 console.info(" typeof undefined:%s",typeof undefined);
console.info("*typeof null:%s",typeof null); console.info(" typeof 字符串:%s",typeof '123');
console.info(" typeof 数字:%s",typeof 123);
console.info(" typeof 布尔:%s",typeof true);
console.info("*typeof 字符串对象:%s",typeof new String('123'));
console.info("*typeof 数字对象:%s",typeof new Number(123));
console.info("*typeof 布尔对象:%s",typeof new Boolean(true)); console.info("*typeof 日期:%s",typeof new Date());
console.info(" typeof 函数:%s",typeof _fn);
console.info(" typeof 对象:%s",typeof obj);
console.info("*typeof 数组:%s",typeof arr);
console.info("*typeof 正则:%s",typeof reg); console.info(" typeof dom元素:%s",typeof element);
console.info(" typeof dom文本节点:%s",typeof node1);
console.info(" typeof 空的dom文本节点:%s",typeof node2); }
</script>
</head>
<body>
<table id="table1">
<tr>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td>4</td>
</tr>
</table>
<span id="node1">测试文本~~~</span>
<span id="node2"> </span>
</body>
</html>
上一篇:django模型系统一


下一篇:python基础-闭包函数和装饰器