本帖最后由 你在意在便在 于 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>
|