-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeepClone.html
228 lines (191 loc) · 5.01 KB
/
deepClone.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
body,h1,h2,h3,h4,h5,h6,p,ol,ul,dl,dt,dd,input,textarea{
padding:0;
margin:0;
}
.box{
display: flex;
display: -webkit-flex;
width:100%;
flex-direction: row;
/*flex-wrap: wrap-reverse;*/
/*flex-flow: row wrap-reverse;*/
/*justify-content: flex-end;*/
}
.box p{
/*width: 2rem;*/
}
.box2{
}
.point{
position: absolute;
left: 50%;
top: 50%;
}
</style>
<!-- <link rel="stylesheet" type="text/css" href="css/reset.css"> -->
<script src="./js/rem.js"></script>
<script src="js/jquery.min.js"></script>
</head>
<body>
<div class="box">
<p>容器1</p>
<p>容器2</p>
<p>容器3</p><!--
<p>容器4</p>
<p>容器5</p> -->
</div>
<div class="box2">
<p>容器一</p>
</div>
<div class="point">
<div class="pop"></div>
</div>
<input type="file" name="" id="fileInput">
<script>
var a = 2;
// var b = 2;
// a++;
// ++b;
// console.log(a == b)
// console.log(a, b)
console.log('a++',a++);
console.log('a', a);
console.log('++a', ++a);
console.log('a', a);
fileInput.onchange = function getFile(ev) {
alert('111')
// console.log(ev.dataTransfer)
// var oFile = ev.dataTransfer.files[0];
var reader = new FileReader();
console.log(reader)
//读取成功
reader.onload = function(){
console.log(reader);
};
reader.onloadstart = function(){
alert('读取开始');
};
reader.onloadend = function(){
alert('读取结束');
};
reader.onabort = function(){
alert('中断');
};
reader.onerror = function(){
alert('读取失败');
};
}
// var time,startTime,endTime,timer;
// var modelType = true;
// startTime = new Date();
// $.ajax({
// data: '文件上传',
// success: function () {
// modelType = !modelType;
// aaa()
// }
// })
// function aaa() {
// endTime = new Date();
// time = endTime.getTime() - startTime.getTime();
// timer = setTimeout(() => {
// if(modelType) clearTimeout(timer);
// aaa();
// // 关闭model
// },time);
// }
// $.ajax({
// data: '文件上传',
// success: function () {
// modelType = !modelType;
// aaa()
// }
// })
// var page = 0;
// // 加载刷新。
// function refresh(refresh,loadmore) {
// $(window).scroll(function(){
// console.log('正在滑动f');
// var scrollTop = $(this).scrollTop(); //滚动条距离顶部的高度
// var scrollHeight = $(document).height(); //当前页面的总高度
// var clientHeight = $(this).height(); //当前可视的页面高度
// console.log(scrollTop + clientHeight , (scrollHeight ))
// // console.log("top:"+scrollTop+",doc:"+scrollHeight+",client:"+clientHeight);
// if(scrollTop + clientHeight >= scrollHeight - 5){ //距离顶部+当前高度 >=文档总高度 即代表滑动到底部 count++; //每次滑动count加1
// // filterData(serviceTypeId,industryId,cityId,count); //调用筛选方法,count为当前分页数
// console.log('下拉');
// if(loadmore){
// loadmore();
// }
// }else if(scrollTop<=0){
// //滚动条距离顶部的高度小于等于0 TODO
// //alert("下拉刷新,要在这调用啥方法?");
// console.log('上拉');
// if(refresh){
// refresh();
// }
// }
// });
// }
// //调用
// refresh(fn1,fn2);
// function fn1() {
// alert('下拉刷新');
// }
// function fn2() {
// alert('上拉加载')
// }
</script>
<script>
function deepClone(obj) {
var _toString = Object.prototype.toString;
// null, undefined, non-object, function
if (!obj || typeof obj !== 'object') {
return obj;
}
// DOM Node
if (obj.nodeType && 'cloneNode' in obj) {
return obj.cloneNode(true);
}
// Date
if (_toString.call(obj) === '[object Date]') {
return new Date(obj.getTime());
}
// RegExp
if (_toString.call(obj) === '[object RegExp]') {
var flags = [];
if (obj.global) { flags.push('g'); }
if (obj.multiline) { flags.push('m'); }
if (obj.ignoreCase) { flags.push('i'); }
return new RegExp(obj.source, flags.join(''));
}
var result = Array.isArray(obj) ? [] :
obj.constructor ? new obj.constructor() : {};
for (var key in obj ) {
result[key] = deepClone(obj[key]);
}
return result;
}
function A() {
this.a = a;
}
var a = {
name: 'qiu',
birth: new Date(),
pattern: /qiu/gim,
container: document.body,
hobbys: ['book', new Date(), /aaa/gim, 111]
};
var c = new A();
var b = deepClone(c);
console.log(c.a === b.a);
console.log(c, b);
</script>
</body>
</html>