Alex刺客

Dancing fingers, damage world. -- 舞动手指,破坏世界.

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  57 随笔 :: 0 文章 :: 76 评论 :: 0 Trackbacks
 1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2<html xmlns="http://www.w3.org/1999/xhtml">
 3    <head>
 4        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 5        <title>Undefined类型</title>
 6        <script type="text/javascript">
 7            /*
 8            *    项目: book -> Javascript高级程序设计.pdf -> 第2章 -> 2.6.2  2.6 原始类型
 9            *
10            *    说明:    Undefined类型只有一个值,即undefined。当声明的变量未初始时,该变量的默认值是undefined。
11            *            
12            *
13            *    练习者: Alex刺客
14            *
15            *    日期: 2009-12-13
16            */

17            var oTemp;
18            //判断此变量类型的字面量是否等于undefined
19            alert(oTemp == undefined);
20            //true
21            
22            //弹出此此变量的类型
23            alert("未初始化的变量 oTemp="+typeof oTemp);
24            //undefined
25            
26            //注意: Alex变量未声明此时弹出的也是undefined
27            alert("未声明的变量 Alex="+typeof Alex);
28            
29            //函数无明确返回值时,返回的也是undefined
30            function textMethod(){
31            
32            }

33            alert("函数的返回值 textMethod()="+ textMethod());
34            
35        </script>
36    </head>
37    <body>
38    </body>
39</html>
posted on 2009-12-13 22:43 Alex刺客 阅读(218) 评论(0)  编辑  收藏 所属分类: JavaScript

只有注册用户登录后才能发表评论。


网站导航: