js基本数据类型
js里面基本数据类型分为原始值和引用值两大类。
其中原始值包括数字number,字符串string,布尔值boolean,undefined,null五种。
引用值包括数组array,对象object,函数function三种。
typeof判断数据类型
当传入一个变量时,可以用typeof来判断基本的数据类型。
参考文献:https://www.cnblogs.com/attitudeY/p/6790219.html和
https://blog.csdn.net/zhouziyu2011/article/details/62236006
树状图是一种数据结构,把他叫做树是因为他像一棵倒挂的树,根朝上,叶朝下。大概结构如下:
图片来源:点击查看
我曾经遇到过这样一个面试题,a和b为兄弟结构标签,c为a的子标签,当a标签的z-index为1,b为2,c为3时,页面该如何布局?1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32<div class='a'>a
<div class='c'>c</div>
</div>
<div class='b'>b</div>
<style>
.a, .b {
width: 100px;
height: 100px;
}
.a {
position: absolute;
z-index: 1;
background: green;
}
.b {
position: absolute;
top: 60px;
left: 60px;
z-index: 2;
background: blue;
}
.c {
position: absolute;
top: 20px;
left: 20px;
z-index: 3;
width: 60px;
height: 60px;
background: orange;
}
</style>
你想到该如何布局了吗?