-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interview.html
126 lines (115 loc) · 3.01 KB
/
Interview.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<meta name="renderer" content="webkit">
<title>js在线调试</title>
<meta name="description" content="首页描述"/>
<meta name="keywords" content="首页关键词"/>
<meta name="author" content="Web Layout:amu"/>
<meta name="format-detection" content="telephone=no,date=no,address=no,email=no,url=no"/>
<style>
h2{margin: 0;position: absolute;}
#block{
border: 2px solid #ccc;
padding: 10px;
}
/* 方法一 */
html,body{height: 100%;}
.layer{
display: flex;
justify-content: center;
align-items: center;
height: 100%;
border: 1px dashed chocolate;
overflow-y: auto;
}
/* 方法二
#block{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}*/
/* 方法三*/
/* #block{
position: absolute;
left: 50%;
top: 50%;
} */
</style>
</head>
<body>
<h2>不确定宽高块元素:上下左右居中</h2>
<ul id="list">
</ul>
<div class="layer">
<div id="block" contenteditable="true">
ss21ss21ss21ss2132132<br>
ss21ss21ss21ss2132132<br>
ss21ss21ss21ss2132132<br>
ss21ss21ss21ss2132132<br>
ss21ss21ss21ss2132132<br>
ss21ss21ss21ss2132132<br>
ss21ss21ss21ss2132132<br>
</div>
</div>
<script>
let listDom = document.querySelector('#list');
let str = ``
for(let i=0;i<10;i++){
str += `<li>${i}</li>`
}
listDom.innerHTML = `${str}`
const outPut = (evt) => {
console.log(evt,evt.target.innerText);
}
listDom.addEventListener('click',outPut)
// console.log(1,[] == false)
// console.log(2,{} == false)
// console.log(3,[])
// console.log([1]==[1])
let person1= {
name:'lili',
age:28,
say:function(){
return ['en','cn']
},
skils:['js','css','vue']
}
console.log(person1)
let person2 = deepClone(person1);
person2.name = 'tony'
person2.skils[3] = 'react';
person2.say = ()=>{
return ['en','cn','jp']
}
console.log(person2)
function deepClone(obj){
let o;
if (typeof obj === 'object') {
if (obj === null) {
o = null;
}else {
if (obj instanceof Array) {
o = [];
for (let i = 0, len = obj.length; i < len; i++) {
o.push(deepClone(obj[ i ]));
}
} else {
o = {};
for (var j in obj) {
o[ j ] = deepClone(obj[ j ]);
}
}
}
} else {
o = obj;
}
return o;
};
</script>
</body>
</html>