码迷,mamicode.com
首页 > 其他好文 > 详细

5.1Object类型

时间:2018-05-01 17:45:35      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:html 4.01   org   XML   tran   utf-8   typeof   object类   mes   tle   

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>New Web Project</title>
        <script>
            /*
             * typeof可能返回下列的某个字符串
             * "undefined"-如果这个值未定义
             * "boolean"-如果这个值是布尔值
             * "string"-如果这个值是字符串
             * "number"-如果这个值是数值
             * "object"-如果这个值是对象/null
             * "function"-如果这个值是函数
             */
            
            var message="some string";
            alert(typeof message);//string
            alert(typeof (message));//string
            alert(typeof 95);//number
        </script>
    </head>
    <body>
    </body>
</html>

 

5.1Object类型

标签:html 4.01   org   XML   tran   utf-8   typeof   object类   mes   tle   

原文地址:https://www.cnblogs.com/cjl-serics/p/8976429.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!