鱼C论坛

 找回密码
 立即注册
查看: 3585|回复: 13

[庖丁解牛] 0 0 0 6 ★ 弄啥嘞“变量类型”这么弱智

[复制链接]
发表于 2017-3-31 20:42:16 | 显示全部楼层 |阅读模式
购买主题 已有 13 人购买  本主题需向作者支付 2 鱼币 才能浏览

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-5-5 10:25:15 | 显示全部楼层
本帖最后由 shishunfu 于 2017-5-5 10:36 编辑
<!DOCTYPE html>
<html lang="en">
<head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>进击的巨人--JS</title>
        <script>
        alert(typeof x);
        alert(x);
        x="我爱鱼C";
        alert(typeof x);
        alert(x);
        var x=33;
        alert(typeof x);
        alert(x);
        x=true;
        alert(typeof x);
        alert(x);
        x=[11,22,33];
        alert(typeof x);
        alert(x);
        x=null;
        alert(typeof x);
        alert(x);
        </script>
</head>
<body>
</body>
</html>

点评

我很赞同!: 5.0
我很赞同!: 5
  发表于 2017-5-5 20:30
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-7-10 15:08:43 | 显示全部楼层
交!作!业!
<!doctype html>
<html>
        <head>
                <meta http-equiv='Content-Type' content='text/html' charset='utf-8'>
                <title>第一个Js程序</title>
                <script type='text/javascript'>
                        alert(typeof x);
                        var x = 30;
                        x = 'http';
                        alert(typeof x);
                        x = null;
                        alert(typeof x);
                        x = 5;
                        alert(typeof x);
                        x = [1,2,3];
                        alert(typeof x);
                </script>
        </head>
        <body>
        </body>
</html>

点评

我很赞同!: 5.0
我很赞同!: 5
  发表于 2017-7-10 15:16

评分

参与人数 1鱼币 +5 收起 理由
不二如是 + 5 热爱鱼C^_^

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-8-8 15:29:34 | 显示全部楼层
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<title>鱼c工作室-Js的变量类型</title>
        <script type="text/javascript">
                var x=33;
                        alert(x);
                        alert(typeof x);
                    x='i love fishc';
                        alert(x);
                    alert(typeof x);
                var y;
                        alert(y);
                        alert(typeof y)
                
                var a=[0,'a',null];
                        alert(a);
                        alert(typeof a);
                var z=null;
                        alert(z);
                        alert(typeof z);
        </script>
<body>

</body>
</html>

但是var a=[0,'a',null]这个里面好像不可以加null
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-11-14 15:31:04 | 显示全部楼层
在效果图正面的那行:Js代码中,alert()可以弹出提示信息框,而内部是(type x)。
有打字错误,(type x)应该是(typeof x)@不二如是

点评

我很赞同!: 5.0
我很赞同!: 5
谢谢指正~  发表于 2018-2-22 14:47

评分

参与人数 1荣誉 +5 鱼币 +5 收起 理由
不二如是 + 5 + 5 谢谢~

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2018-2-22 14:30:52 | 显示全部楼层
alret就是Python中的print,typeof就是Python中的type

点评

我很赞同!: 5.0
我很赞同!: 5
棒~  发表于 2018-2-22 14:34
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2018-6-21 13:49:04 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-9-30 16:19:39 | 显示全部楼层
~~打卡
1569831502(1).png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-11-8 21:01:48 | 显示全部楼层
本帖最后由 你在意在便在 于 2019-11-8 21:04 编辑

   alert 是弹窗 。 typeof x 是为了显示它的数据类型~~
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <script>
    var x=33;         // 数字
        alert(typeof x);
        x="我爱鱼C";  // 字符串
        alert(typeof x);
        x=true;      //  boolean值
        alert(typeof x);
        x=[1,2,3];   //  数组
        alert(typeof x);
    </script>
</body>
</html>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-9-3 17:58:43 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 13:57

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表