关于typeof运算符 博客分类: AJAX JavaScriptHTML
typeof 运算符返回一个用来表示表达式的数据类型的字符串。
可能的字符串有:"number"、"string"、"boolean"、"object"、"function" 和 "undefined"。
一个很简单的例子
<html>
<head>
<script language="JavaScript">
var a=function(){
alert("This is in the function of a");
}
document.writeln("返回string,typeof('aa')=="+typeof('aa'));
document.writeln("<br/>返回number,typeof(8)=="+typeof(8));
document.writeln("<br/>返回boolean,typeof(true)=="+typeof(true));
document.writeln("<br/>返回object,typeof(document.getElementById('div'))=="+typeof(document.getElementById('div')));
document.writeln("<br/>返回undefined,typeof(cc)=="+typeof(cc));
document.writeln("<br/>返回function,typeof(a)=="+typeof(a));
</script>
</head>
<body>
<div id="div"></div>
</body>
</html>
上一篇: reentrant函数与thread safe函数 博客分类: 综合 thread多线程AIX编程PHP
下一篇: 第一个javascript prototype 博客分类: javascript prototypeJavaScriptjQueryOORuby
推荐阅读
-
关于typeof运算符 博客分类: AJAX JavaScriptHTML
-
关于attachEvent和addEventListener 博客分类: AJAX IEJavaScript浏览器HTML
-
关于typeof运算符 博客分类: AJAX JavaScriptHTML
-
关于attachEvent和addEventListener 博客分类: AJAX IEJavaScript浏览器HTML
-
关于“服务器推”技术与反向Ajax的一点笔记 博客分类: 读书笔记 html5ajaxjavascriptcometweb
-
关于“服务器推”技术与反向Ajax的一点笔记 博客分类: 读书笔记 html5ajaxjavascriptcometweb