-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJS-库函数传入-undefined-参数的意图和作用.html
482 lines (317 loc) · 26 KB
/
JS-库函数传入-undefined-参数的意图和作用.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>js 库函数传入 undefined 参数的意图和作用-Over the mountains, mountains. | 空脑壳</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="icon" type="image/x-icon" href="https://myblog-static.oss-cn-beijing.aliyuncs.com/favor-icon/mylogo.png">
<meta name="keywords" content="雷雷雷,空脑壳,前端,HTML,CSS,JS,生活" />
<meta name="google-site-verification" content="pTRbturh_lAK5OIXLwAO7OKRMaEgSX2MtqqFrk1AMRM" />
<meta name="baidu-site-verification" content="vyp41u64K8" />
<meta name="description" content="&emsp;&emsp;最近了解 ES6 的箭头函数时无意间扯出了一连串的问题。首先碰到了 bind() 函数,先前只了解call() 和 apply() 不曾注意到 bind(),于是视线暂时转移到 bind()。&emsp;&emsp;当搜索 MDN 时发现 bind() 根据参数个数的不同分为不同的功能,其中手册中的例子在演示传入两个参数时第一个参数传入 undefined 这让我想起来了">
<meta name="keywords" content="javascript,ES6">
<meta property="og:type" content="article">
<meta property="og:title" content="JS 库函数传入 undefined 参数的意图和作用">
<meta property="og:url" content="http://hi.thisisray.me/JS-库函数传入-undefined-参数的意图和作用.html">
<meta property="og:site_name" content="空脑壳">
<meta property="og:description" content="&emsp;&emsp;最近了解 ES6 的箭头函数时无意间扯出了一连串的问题。首先碰到了 bind() 函数,先前只了解call() 和 apply() 不曾注意到 bind(),于是视线暂时转移到 bind()。&emsp;&emsp;当搜索 MDN 时发现 bind() 根据参数个数的不同分为不同的功能,其中手册中的例子在演示传入两个参数时第一个参数传入 undefined 这让我想起来了">
<meta property="og:locale" content="en">
<meta property="og:updated_time" content="2018-10-08T03:26:35.140Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="JS 库函数传入 undefined 参数的意图和作用">
<meta name="twitter:description" content="&emsp;&emsp;最近了解 ES6 的箭头函数时无意间扯出了一连串的问题。首先碰到了 bind() 函数,先前只了解call() 和 apply() 不曾注意到 bind(),于是视线暂时转移到 bind()。&emsp;&emsp;当搜索 MDN 时发现 bind() 根据参数个数的不同分为不同的功能,其中手册中的例子在演示传入两个参数时第一个参数传入 undefined 这让我想起来了">
<link rel="alternate" href="/atom.xml" title="空脑壳" type="application/atom+xml">
<link rel="apple-touch-icon" href="/https://myblog-static.oss-cn-beijing.aliyuncs.com/favor-icon/avatar.jpg">
<link href="//fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Montserrat:700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic" rel="stylesheet" type="text/css">
<link href="//cdn.bootcss.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
<style type="text/css">
@font-face{font-family:futura-pt;src:url(https://use.typekit.net/af/9749f0/00000000000000000001008f/27/l?subset_id=2&fvd=n5) format("woff2");font-weight:500;font-style:normal;}
@font-face{font-family:futura-pt;src:url(https://use.typekit.net/af/90cf9f/000000000000000000010091/27/l?subset_id=2&fvd=n7) format("woff2");font-weight:500;font-style:normal;}
@font-face{font-family:futura-pt;src:url(https://use.typekit.net/af/8a5494/000000000000000000013365/27/l?subset_id=2&fvd=n4) format("woff2");font-weight:lighter;font-style:normal;}
@font-face{font-family:futura-pt;src:url(https://use.typekit.net/af/d337d8/000000000000000000010095/27/l?subset_id=2&fvd=i4) format("woff2");font-weight:400;font-style:italic;}</style>
<link rel="stylesheet" href="/css/style.css">
<script src="/js/jquery-3.1.1.min.js"></script>
<script src="/js/bootstrap.js"></script>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="/css/bootstrap.css" >
<link rel="stylesheet" href="/css/dialog.css">
<link rel="stylesheet" href="/css/header-post.css" >
<link rel="stylesheet" href="/css/vdonate.css" >
</head>
<body data-spy="scroll" data-target="#toc" data-offset="50">
<div id="container">
<div id="wrap">
<header>
<div id="allheader" class="navbar navbar-default navbar-static-top" role="navigation">
<div class="navbar-inner">
<div class="container">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" style="
margin-top: 0px;"
href="#" data-toggle="modal" data-target="#myModal" >
<img width="124px" height="124px" alt="Hike News" src="https://myblog-static.oss-cn-beijing.aliyuncs.com/favor-icon/avatar.jpg">
</a>
<div class="navbar-collapse collapse">
<ul class="hnav navbar-nav">
<li> <a class="main-nav-link" href="/">Home</a> </li>
<li> <a class="main-nav-link" href="/archives">Archives</a> </li>
<li> <a class="main-nav-link" href="/categories">Categories</a> </li>
<li> <a class="main-nav-link" href="/tags">Tags</a> </li>
<li><div id="search-form-wrap">
<form class="search-form">
<input type="text" class="ins-search-input search-form-input" placeholder="" />
<button type="submit" class="search-form-submit"></button>
</form>
<div class="ins-search">
<div class="ins-search-mask"></div>
<div class="ins-search-container">
<div class="ins-input-wrapper">
<input type="text" class="ins-search-input" placeholder="Type something..." />
<span class="ins-close ins-selectable"><i class="fa fa-times-circle"></i></span>
</div>
<div class="ins-section-wrapper">
<div class="ins-section-container"></div>
</div>
</div>
</div>
<script>
(function (window) {
var INSIGHT_CONFIG = {
TRANSLATION: {
POSTS: 'Posts',
PAGES: 'Pages',
CATEGORIES: 'Categories',
TAGS: 'Tags',
UNTITLED: '(Untitled)',
},
ROOT_URL: '/',
CONTENT_URL: '/content.json',
};
window.INSIGHT_CONFIG = INSIGHT_CONFIG;
})(window);
</script>
<script src="/js/insight.js"></script>
</div></li>
</div>
</div>
</div>
</div>
</header>
<div id="content" class="outer">
<section id="main" style="float:none;"><article id="post-JS-库函数传入-undefined-参数的意图和作用" style="width: 75%; float:left;" class="article article-type-post article-home-false" itemscope itemprop="blogPost" >
<div id="articleInner" class="article-inner">
<header class="article-header">
<h1 class="thumb" class="article-title" itemprop="name">
JS 库函数传入 undefined 参数的意图和作用
</h1>
</header>
<div class="article-meta">
<a href="/JS-库函数传入-undefined-参数的意图和作用.html" class="article-date">
<time datetime="2017-04-13T05:29:30.000Z" itemprop="datePublished">2017-04-13</time>
</a>
<a class="article-category-link" href="/categories/烂笔头/">烂笔头</a>
</div>
<div class="article-count">
<div class="count-wrapper">
<span class="post-count">本文共 890 字</span>
<span class="post-count">预计花费 4 分钟</span>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<blockquote>
<p>  最近了解 ES6 的箭头函数时无意间扯出了一连串的问题。首先碰到了 bind() 函数,先前只了解call() 和 apply() 不曾注意到 bind(),于是视线暂时转移到 bind()。<br>  当搜索 MDN 时发现 bind() 根据参数个数的不同分为不同的功能,其中手册中的例子在演示传入两个参数时第一个参数传入 undefined 这让我想起来了在 jQuery 框架中也曾经见到这样的做法但一直懒惰不去仔细了解,于是这个问题链的终点就停在此,我将以“递归”的方式从前往后发现问题,从后往前解决问题。</p>
</blockquote>
<a id="more"></a>
<h3 id="jQuery-为什么将-undefined-当作参数传入?"><a href="#jQuery-为什么将-undefined-当作参数传入?" class="headerlink" title="jQuery 为什么将 undefined 当作参数传入?"></a>jQuery 为什么将 undefined 当作参数传入?</h3><blockquote>
<p>  防止 window.undefined 被重写,由于 undefined 不是 JS 的保留字,所以存在开发者在全局作用域声明一个名为 undefined 的变量并赋值的情况。当开发者自己编写的函数内部用到了 window.undefined 在寻找时追溯到顶层作用域而此时发现已被重写,就会导致意外发生。值得注意的是这个问题只存在于一些老的浏览器,当时的规则 undefined 是可以被重写的。而当 ES 5 出台后规定全局作用域中的 window.undefined 是不能被写的,而函数作用域的依旧可以。</p>
</blockquote>
<p>jQuery 为了兼容旧浏览器的做法</p>
<figure class="highlight js"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br></pre></td><td class="code"><pre><span class="line">(<span class="function"><span class="keyword">function</span>(<span class="params">window,undefined</span>)</span>{</span><br><span class="line"> <span class="comment">// xxx</span></span><br><span class="line">})(<span class="built_in">window</span>)</span><br></pre></td></tr></table></figure>
<p>这种解决方案的关键点在于<code>设定 undefined 形参,但不传入对应的实参。这样可以保证将 window.undefined 传入函数内部。</code>。<br>这里有个知识点:<strong>JS 中缺省的参数,默认传递 undefined</strong>。<br>当函数内部需要用到 undefined 时会先在内部作用域查找,而此时 undefined 已被传递进来并且是被赋为 window.undefined ,所以就停止了向上查找,排除了 window.undefined 被重写造成的影响。<br><code>这种情况只存在于老旧浏览器, window.undefined 可被重写的 bug 。随着时间的发展,这种写法已不再使用,因为没有必要再兼容老旧浏览器</code></p>
<h3 id="bind-函数:两套参数,两种功能"><a href="#bind-函数:两套参数,两种功能" class="headerlink" title="bind() 函数:两套参数,两种功能"></a>bind() 函数:两套参数,两种功能</h3><blockquote>
<p>  bind()方法会<strong>创建一个新函数</strong>。当这个新函数被调用时,bind()的*第一个参数将作为它运行时的 <strong>this</strong>, 之后的一序列参数将会在传递的实参前传入作为它的参数。 引自 <a href="https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Function/bind" target="_blank" rel="noopener">MDN</a></p>
</blockquote>
<h4 id="一个参数:创建一个函数,使这个函数不论怎么调用都有同样的-this-值。"><a href="#一个参数:创建一个函数,使这个函数不论怎么调用都有同样的-this-值。" class="headerlink" title="一个参数:创建一个函数,使这个函数不论怎么调用都有同样的 this 值。"></a>一个参数:创建一个函数,使这个函数不论怎么调用都有同样的 this 值。</h4><figure class="highlight js"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br><span class="line">10</span><br><span class="line">11</span><br><span class="line">12</span><br><span class="line">13</span><br><span class="line">14</span><br><span class="line">15</span><br><span class="line">16</span><br></pre></td><td class="code"><pre><span class="line"><span class="keyword">this</span>.x = <span class="number">9</span>;</span><br><span class="line"><span class="keyword">var</span> <span class="built_in">module</span> = {</span><br><span class="line"> x: <span class="number">81</span>,</span><br><span class="line"> getX: <span class="function"><span class="keyword">function</span>(<span class="params"></span>) </span>{</span><br><span class="line"> <span class="keyword">return</span> <span class="keyword">this</span>.x</span><br><span class="line"> }</span><br><span class="line">}</span><br><span class="line"></span><br><span class="line"><span class="built_in">module</span>.getX()</span><br><span class="line"><span class="keyword">var</span> retrieveX = <span class="built_in">module</span>.getX <span class="comment">// retrieveX 拿到 getX 指针</span></span><br><span class="line">retrieveX() <span class="comment">// 等价于 window.retrieveX 结果为 9</span></span><br><span class="line"></span><br><span class="line"><span class="comment">// bind() 登场</span></span><br><span class="line"></span><br><span class="line"><span class="keyword">var</span> boundGetX = retrieveX.bind(<span class="built_in">module</span>) <span class="comment">// 此处的 module 就是永久绑定到的 this, 注意他会返回一个新的函数</span></span><br><span class="line">boundGetX() <span class="comment">//81</span></span><br></pre></td></tr></table></figure>
<h4 id="两个参数:使一个函数拥有预设的初始参数"><a href="#两个参数:使一个函数拥有预设的初始参数" class="headerlink" title="两个参数:使一个函数拥有预设的初始参数"></a>两个参数:使一个函数拥有预设的初始参数</h4><figure class="highlight js"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br><span class="line">10</span><br><span class="line">11</span><br></pre></td><td class="code"><pre><span class="line"><span class="function"><span class="keyword">function</span> <span class="title">list</span>(<span class="params"></span>) </span>{</span><br><span class="line"> <span class="keyword">return</span> <span class="built_in">Array</span>.prototype.slice.call(<span class="built_in">arguments</span>);</span><br><span class="line">}</span><br><span class="line"></span><br><span class="line"><span class="keyword">var</span> list1 = list(<span class="number">1</span>, <span class="number">2</span>, <span class="number">3</span>); <span class="comment">// [1, 2, 3]</span></span><br><span class="line"></span><br><span class="line"><span class="comment">// Create a function with a preset leading argument</span></span><br><span class="line"><span class="keyword">var</span> leadingThirtysevenList = list.bind(<span class="literal">undefined</span>, <span class="number">37</span>);</span><br><span class="line"></span><br><span class="line"><span class="keyword">var</span> list2 = leadingThirtysevenList(); <span class="comment">// [37]</span></span><br><span class="line"><span class="keyword">var</span> list3 = leadingThirtysevenList(<span class="number">1</span>, <span class="number">2</span>, <span class="number">3</span>); <span class="comment">// [37, 1, 2, 3]</span></span><br></pre></td></tr></table></figure>
<p><a href="https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Function/bind" target="_blank" rel="noopener">bind() 的详细讲解</a></p>
<h4 id="手写-bind"><a href="#手写-bind" class="headerlink" title="手写 bind()"></a>手写 <code>bind()</code></h4><figure class="highlight js"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br></pre></td><td class="code"><pre><span class="line"><span class="function"><span class="keyword">function</span> <span class="title">bind</span>(<span class="params">fn, context</span>)</span>{</span><br><span class="line"> <span class="keyword">return</span> <span class="function"><span class="keyword">function</span> (<span class="params"></span>)</span>{</span><br><span class="line"> <span class="keyword">return</span> fn.apply(context, <span class="built_in">arguments</span>);</span><br><span class="line"> }</span><br><span class="line">}</span><br></pre></td></tr></table></figure>
<p>上述代码包含两个知识点:</p>
<ol>
<li>Array.prototype.slice.call(arguments) 可以将一个具有 length 属性的对象转化为数组</li>
<li>当需要传的实参数量少于形参的数量时,可以用 undefined 占位。</li>
</ol>
</div>
<footer class="article-footer">
<div id="donation_div"></div>
<script src="/js/vdonate.js"></script>
<script>
var a = new Donate({
title: '水平有限,喝杯咖啡交个朋友吧。', // 可选参数,打赏标题
btnText: 'Donate', // 可选参数,打赏按钮文字
el: document.getElementById('donation_div'),
wechatImage: 'https://myblog-static.oss-cn-beijing.aliyuncs.com/Donate/wechat.png?x-oss-process=style/blogImg-watermark',
alipayImage: 'https://myblog-static.oss-cn-beijing.aliyuncs.com/Donate/alipay.jpg?x-oss-process=style/blogImg-watermark'
});
</script>
<div id="comment">
<!-- 来必力City版安装代码 -->
<div id="lv-container" data-id="city" data-uid="MTAyMC8yOTQ4MS82MDQ5">
<script type="text/javascript">
(function(d, s) {
var j, e = d.getElementsByTagName(s)[0];
if (typeof LivereTower === 'function') { return; }
j = d.createElement(s);
j.src = 'https://cdn-city.livere.com/js/embed.dist.js';
j.async = true;
e.parentNode.insertBefore(j, e);
})(document, 'script');
</script>
<noscript>为正常使用来必力评论功能请激活JavaScript</noscript>
</div>
<!-- City版安装代码已完成 -->
</div>
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/ES6/">ES6</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/javascript/">javascript</a></li></ul>
</footer>
</div>
<nav id="article-nav">
<a href="/利用 @font-face 字体图标代替传统图标图片.html" id="article-nav-newer" class="article-nav-link-wrap">
<strong class="article-nav-caption">Newer</strong>
<div class="article-nav-title">
利用 @font-face 字体图标代替传统图标图片
</div>
</a>
<a href="/Promise.html" id="article-nav-older" class="article-nav-link-wrap">
<strong class="article-nav-caption">Older</strong>
<div class="article-nav-title">Promise</div>
</a>
</nav>
</article>
<!-- Table of Contents -->
<aside id="toc-sidebar">
<div id="toc" class="toc-article">
<strong class="toc-title">Contents</strong>
<ol class="nav"><li class="nav-item nav-level-3"><a class="nav-link" href="#jQuery-为什么将-undefined-当作参数传入?"><span class="nav-number">1.</span> <span class="nav-text">jQuery 为什么将 undefined 当作参数传入?</span></a></li><li class="nav-item nav-level-3"><a class="nav-link" href="#bind-函数:两套参数,两种功能"><span class="nav-number">2.</span> <span class="nav-text">bind() 函数:两套参数,两种功能</span></a><ol class="nav-child"><li class="nav-item nav-level-4"><a class="nav-link" href="#一个参数:创建一个函数,使这个函数不论怎么调用都有同样的-this-值。"><span class="nav-number">2.1.</span> <span class="nav-text">一个参数:创建一个函数,使这个函数不论怎么调用都有同样的 this 值。</span></a></li><li class="nav-item nav-level-4"><a class="nav-link" href="#两个参数:使一个函数拥有预设的初始参数"><span class="nav-number">2.2.</span> <span class="nav-text">两个参数:使一个函数拥有预设的初始参数</span></a></li><li class="nav-item nav-level-4"><a class="nav-link" href="#手写-bind"><span class="nav-number">2.3.</span> <span class="nav-text">手写 bind()</span></a></li></ol></li></ol>
</div>
</aside>
</section>
</div>
<footer id="footer">
<div class="container">
<div class="row">
<!-- <p> Powered by <a href="http://hexo.io/" target="_blank">Hexo</a> and <a href="https://github.com/iTimeTraveler/hexo-theme-hiker" target="_blank">Hexo-theme-hiker</a> </p> -->
<p id="copyRightEn">Copyright © 2017 - 2018 空脑壳 All Rights Reserved.</p>
<p>冀ICP备17022284号</p>
</div>
</div>
</footer>
<!-- min height -->
<script>
var wrapdiv = document.getElementById("wrap");
var contentdiv = document.getElementById("content");
var allheader = document.getElementById("allheader");
wrapdiv.style.minHeight = document.body.offsetHeight + "px";
if (allheader != null) {
contentdiv.style.minHeight = document.body.offsetHeight - allheader.offsetHeight - document.getElementById("footer").offsetHeight + "px";
} else {
contentdiv.style.minHeight = document.body.offsetHeight - document.getElementById("footer").offsetHeight + "px";
}
</script>
</div>
<!-- <nav id="mobile-nav">
<a href="/" class="mobile-nav-link">Home</a>
<a href="/archives" class="mobile-nav-link">Archives</a>
<a href="/categories" class="mobile-nav-link">Categories</a>
<a href="/tags" class="mobile-nav-link">Tags</a>
</nav> -->
<!-- mathjax config similar to math.stackexchange -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true
}
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for(i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<link rel="stylesheet" href="/fancybox/jquery.fancybox.css">
<script src="/fancybox/jquery.fancybox.pack.js"></script>
<script src="/js/scripts.js"></script>
<script src="/js/dialog.js"></script>
</div>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h2 class="modal-title" id="myModalLabel">设置</h2>
</div>
<hr style="margin-top:0px; margin-bottom:0px; width:80%; border-top: 3px solid #000;">
<hr style="margin-top:2px; margin-bottom:0px; width:80%; border-top: 1px solid #000;">
<div class="modal-body">
<div style="margin:6px;">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" onclick="javascript:setFontSize();" aria-expanded="true" aria-controls="collapseOne">
正文字号大小
</a>
</div>
<div id="collapseOne" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
您已调整页面字体大小
</div>
</div>
<div style="margin:6px;">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" onclick="javascript:setBackground();" aria-expanded="true" aria-controls="collapseTwo">
夜间护眼模式
</a>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body">
夜间模式已经开启,再次单击按钮即可关闭
</div>
</div>
<div>
<a data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="true" aria-controls="collapseThree"> 关 于 </a>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
空脑壳
</div>
<div class="panel-body">
Copyright © 2018 雷雷雷 All Rights Reserved.
</div>
</div>
</div>
<hr style="margin-top:0px; margin-bottom:0px; width:80%; border-top: 1px solid #000;">
<hr style="margin-top:2px; margin-bottom:0px; width:80%; border-top: 3px solid #000;">
<div class="modal-footer">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
</div>
</div>
</div>
<a id="rocket" href="#top" class=""></a>
<script type="text/javascript" src="/js/totop.js?v=1.0.0" async=""></script>
<a id="menu-switch"><i class="fa fa-bars fa-lg"></i></a>
</body>
</html>