tona-vite 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/README.md +50 -0
  2. package/dist/index.cjs +94 -0
  3. package/dist/index.d.cts +27 -0
  4. package/dist/index.d.cts.map +1 -0
  5. package/dist/index.d.mts +27 -0
  6. package/dist/index.d.mts.map +1 -0
  7. package/dist/index.mjs +69 -0
  8. package/dist/index.mjs.map +1 -0
  9. package/package.json +62 -0
  10. package/public/css/atom-one-dark.css +96 -0
  11. package/public/css/atom-one-light.css +96 -0
  12. package/public/css/blog-common.min.css +5049 -0
  13. package/public/css/font-awesome-5.css +4586 -0
  14. package/public/css/mobile-common.min.css +226 -0
  15. package/public/images/1-20210309211744338-647771178.jpg +0 -0
  16. package/public/images/20.png +0 -0
  17. package/public/images/avatar-default.svg +1 -0
  18. package/public/images/bannerbar-aws-bg.png +0 -0
  19. package/public/images/cnblogs.png +0 -0
  20. package/public/images/default-avatar.png +0 -0
  21. package/public/images/downdown.gif +0 -0
  22. package/public/images/favicon.png +0 -0
  23. package/public/images/icon_addcomment.gif +0 -0
  24. package/public/images/icon_form.gif +0 -0
  25. package/public/images/icon_voice.gif +0 -0
  26. package/public/images/icon_weibo_24.png +0 -0
  27. package/public/images/lite-mode-check.svg +1 -0
  28. package/public/images/logo.gif +0 -0
  29. package/public/images/logo.svg +1 -0
  30. package/public/images/message.svg +4 -0
  31. package/public/images/myblog.svg +4 -0
  32. package/public/images/newpost.svg +4 -0
  33. package/public/images/search.svg +1 -0
  34. package/public/images/upup.gif +0 -0
  35. package/public/images/wechat.png +0 -0
  36. package/public/index.html +168 -0
  37. package/public/js/blog.common.min.js +15934 -0
  38. package/public/js/highlight.min.js +1488 -0
  39. package/public/js/highlightjs-line-numbers.min.js +134 -0
  40. package/public/js/jquery.min.js +4119 -0
  41. package/public/js/mockAPI.js +3 -0
  42. package/public/templates/catalog.html +842 -0
  43. package/public/templates/category.html +903 -0
  44. package/public/templates/home.html +962 -0
  45. package/public/templates/photos.html +898 -0
  46. package/public/templates/photoview.html +814 -0
  47. package/public/templates/post-markdown.html +2722 -0
  48. package/public/templates/post-tinymce.html +1891 -0
  49. package/public/templates/post-tinymce5.html +2304 -0
  50. package/public/templates/postarchive.html +1127 -0
  51. package/public/templates/tags.html +2281 -0
@@ -0,0 +1,2304 @@
1
+ <!DOCTYPE html>
2
+ <html lang="zh-cn">
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Markdown</title>
7
+ <link rel="icon" type="image/svg+xml" href="/images/favicon.png" />
8
+ <link rel="stylesheet" href="../css/blog-common.min.css" />
9
+ <link rel="stylesheet" href="../css/atom-one-dark.css" />
10
+ </head>
11
+
12
+ <body>
13
+ <a name="top"></a>
14
+ <div id="top_nav" class="navbar forpc">
15
+ <nav id="nav_main" class="navbar-main">
16
+ <ul id="nav_left" class="navbar-list navbar-left">
17
+ <li class="navbar-branding">
18
+ <a href="https://www.cnblogs.com/" title="开发者的网上家园"
19
+ ><img src="/images/logo.svg"
20
+ /></a>
21
+ </li>
22
+ <li>
23
+ <a href="/">首页</a>
24
+ </li>
25
+ <li>
26
+ <a href="https://news.cnblogs.com/">新闻</a>
27
+ </li>
28
+ <li>
29
+ <a href="https://q.cnblogs.com/">博问</a>
30
+ </li>
31
+ <li>
32
+ <a id="nav_brandzone" href="https://brands.cnblogs.com/">专区</a>
33
+ </li>
34
+ <li>
35
+ <a href="https://ing.cnblogs.com/">闪存</a>
36
+ </li>
37
+ <li>
38
+ <a href="https://edu.cnblogs.com/">班级</a>
39
+ </li>
40
+ </ul>
41
+ <ul id="nav_right" class="navbar-list navbar-right">
42
+ <li>
43
+ <form
44
+ id="zzk_search"
45
+ class="navbar-search"
46
+ action="https://zzk.cnblogs.com/s"
47
+ method="get"
48
+ >
49
+ <input
50
+ name="w"
51
+ id="zzk_search_input"
52
+ placeholder="代码改变世界"
53
+ type="text"
54
+ tabindex="3"
55
+ />
56
+ <button type="submit" id="zzk_search_button">
57
+ <img src="/images/search.svg" alt="搜索" />
58
+ </button>
59
+ </form>
60
+ </li>
61
+ <li id="navbar_login_status" class="navbar-list">
62
+ <a
63
+ id="navblog-myblog-icon"
64
+ class="navbar-user-info navbar-blog"
65
+ href="#"
66
+ alt="我的博客"
67
+ title="我的博客"
68
+ style="display: inline"
69
+ >
70
+ <img
71
+ id="myblog_icon"
72
+ class="navbar-icon"
73
+ src="/images/myblog.svg"
74
+ alt="我的博客"
75
+ />
76
+ </a>
77
+ <a
78
+ class="navbar-user-info navbar-message navbar-icon-wrapper"
79
+ href="#"
80
+ alt="短消息"
81
+ title="短消息"
82
+ style="display: inline"
83
+ >
84
+ <img
85
+ id="msg_icon"
86
+ class="navbar-icon"
87
+ src="/images/message.svg"
88
+ alt="短消息"
89
+ />
90
+ <span id="msg_count">1</span>
91
+ </a>
92
+ <div
93
+ id="user_info"
94
+ class="navbar-user-info dropdown"
95
+ style="display: block"
96
+ >
97
+ <a class="dropdown-button" href="#">
98
+ <img
99
+ id="user_icon"
100
+ class="navbar-avatar"
101
+ src="/images/default-avatar.png"
102
+ alt="用户头像"
103
+ />
104
+ </a>
105
+ <div class="dropdown-menu">
106
+ <a id="navblog-myblog-text" href="#">我的博客</a>
107
+ <a href="#">我的园子</a>
108
+ <a href="#">账号设置</a>
109
+ <a href="#">退出登录</a>
110
+ </div>
111
+ </div>
112
+ <a class="navbar-anonymous" href="#" style="display: none">注册</a>
113
+ <a class="navbar-anonymous" href="#" style="display: none">登录</a>
114
+ </li>
115
+ </ul>
116
+ </nav>
117
+ </div>
118
+ <div id="home">
119
+ <div id="header">
120
+ <div id="blogTitle">
121
+ <a id="lnkBlogLogo" href="#"><img id="blogLogo" src="" alt="" /></a>
122
+ <h1>
123
+ <a
124
+ id="Header1_HeaderTitle"
125
+ class="headermaintitle HeaderMainTitle"
126
+ href=""
127
+ >用户昵称</a
128
+ >
129
+ </h1>
130
+ <h2></h2>
131
+ </div>
132
+ <div id="navigator">
133
+ <ul id="navList">
134
+ <li>
135
+ <a id="blog_nav_sitehome" class="menu" href="#">博客园</a>
136
+ </li>
137
+ <li>
138
+ <a id="blog_nav_myhome" class="menu" href="#">首页</a>
139
+ </li>
140
+ <li>
141
+ <a id="blog_nav_newpost" class="menu" href="#">新随笔</a>
142
+ </li>
143
+ <li>
144
+ <a id="blog_nav_contact" class="menu" href="#">联系</a>
145
+ </li>
146
+ <li>
147
+ <a id="blog_nav_rss" class="menu" href="#" data-rss="https://www.cnblogs.com/mzq123/rss/">订阅</a>
148
+ </li>
149
+ <li>
150
+ <a id="blog_nav_admin" class="menu" href="#">管理</a>
151
+ </li>
152
+ </ul>
153
+ <div class="blogStats">
154
+ <span id="stats_post_count">随笔 - 4&nbsp; </span>
155
+ <span id="stats_article_count">文章 - 0&nbsp; </span>
156
+ <span id="stats-comment_count">评论 - 1</span>
157
+ <span id="stats-total-view-count"
158
+ >阅读 - <span title="总阅读数: 579"> 579</span></span
159
+ >
160
+ </div>
161
+ </div>
162
+ </div>
163
+ <div id="main">
164
+ <div id="mainContent">
165
+ <div class="forFlow">
166
+ <div id="post_detail">
167
+ <div id="topics">
168
+ <div class="post">
169
+ <h1 class="postTitle">
170
+ <a
171
+ id="cb_post_title_url"
172
+ class="postTitle2"
173
+ href="https://www.cnblogs.com/guangzanassistant/p/12549775.html"
174
+ >博文标题</a
175
+ >
176
+ </h1>
177
+ <div class="postBody">
178
+ <div
179
+ id="cnblogs_post_body"
180
+ class="blogpost-body blogpost-body-html"
181
+ >
182
+ <h2 id="段落格式">
183
+ <span style="font-size: 24px">段落格式</span>
184
+ </h2>
185
+ <p>
186
+ <a href="http://www.cnblogs.com"
187
+ ><span style="color: rgba(35, 111, 161, 1)"
188
+ >博客园</span
189
+ ></a
190
+ >&nbsp;创建于
191
+ <span style="text-decoration: underline"
192
+ >2004 年 1 月</span
193
+ >,博客园诞生于江苏<span
194
+ style="background-color: rgba(22, 145, 121, 1)"
195
+ >扬州</span
196
+ >这样一个 IT 非常落后的小城市,<span
197
+ style="text-decoration: line-through"
198
+ >城市虽小</span
199
+ >,但是这里却有<strong>很多求知创新的人</strong>,<em>博客园诞生的理由是如此简单</em>。
200
+ </p>
201
+ <p>
202
+ <span style="font-family: 宋体"
203
+ >一个IT技术人员想为IT技术人员们提供一个<span
204
+ style="color: rgba(22, 145, 121, 1)"
205
+ >纯净的技术交流空间</span
206
+ >,博客园很长时间只有一个不能再简单的博客,有近四年,博客园仅靠一个人几年工作的积蓄在维持,互联网浪潮的此起彼伏,“博客“从耀眼的明星成为平民,这些似乎都与博客园无关,博客园一步一个脚印地走着自己的路,傻傻地对每个用户注册进行人工审批、对首页内容宁缺毋滥、对不合适的广告拒之门外,傻傻地对用户体验关怀备至,对盈利模式冷若冰霜。</span
207
+ >
208
+ </p>
209
+ <p>
210
+ 两水夹明镜,双桥落彩虹。人烟寒橘柚,秋色老梧桐。——李白《秋登宣城谢眺北楼》
211
+ </p>
212
+ <p style="text-align: center">
213
+ 山中无甲子,寒尽不知年。——吴承恩《西游记》
214
+ </p>
215
+ <p style="text-align: right">
216
+ 窗间梅熟落蒂,墙下笋成出林。连雨不知春去,一晴方觉夏深。——范成大《喜晴》
217
+ </p>
218
+ <div class="para" data-pid="9">19:39:35</div>
219
+ <div class="para" data-pid="9">2021-07-06</div>
220
+ <div class="para" data-pid="9">7:39:53 PM</div>
221
+ <div class="para" data-pid="9">07/06/2021</div>
222
+ <h2 class="para" data-pid="9" id="图片">
223
+ <span style="font-size: 24px">图片</span>
224
+ </h2>
225
+ <div class="para" data-pid="9">
226
+ <span style="font-size: 24px"
227
+ ><img
228
+ src="/images/cnblogs.png"
229
+ alt=""
230
+ width="499"
231
+ height="455"
232
+ /></span>
233
+ </div>
234
+ <h2 class="para" data-pid="9" id="代码">
235
+ <span style="font-size: 24px">代码</span>
236
+ </h2>
237
+ <!-- prettier-ignore -->
238
+ <div class="para" data-pid="9">
239
+ <pre class="language-javascript codeblock"><code class="hljs"><span class="hljs-keyword">import</span> <span class="hljs-string">'./index.css'</span>
240
+ <span class="hljs-keyword">import</span> { createTheme } <span class="hljs-keyword">from</span> <span class="hljs-string">'tona'</span>
241
+
242
+ <span class="hljs-keyword">const</span> theme = createTheme()</code>
243
+ </pre>
244
+ </div>
245
+ <!-- prettier-ignore -->
246
+ <details contenteditable="false">
247
+ <summary>点击查看代码</summary>
248
+ <pre class="language-bash codeblock">
249
+ <code class="hljs">/**
250
+ * 获取今天的日期,格式: yyyy-MM-dd
251
+ * @returns {string} 今天的日期
252
+ */
253
+ <span class="hljs-built_in">export</span> <span class="hljs-keyword">function</span> <span class="hljs-function"><span class="hljs-title">getDate</span></span>() {
254
+ const time = new Date()
255
+ const year = time.getFullYear()
256
+ const month = (<span class="hljs-string">'0'</span> + (time.getMonth() + 1)).slice(-2)
257
+ const day = (<span class="hljs-string">'0'</span> + time.getDate()).slice(-2)
258
+ // const hour = (<span class="hljs-string">'0'</span> + time.getHours()).slice(-2)
259
+ // const minute = (<span class="hljs-string">'0'</span> + time.getMinutes()).slice(-2)
260
+ // const second = (<span class="hljs-string">'0'</span> + time.getSeconds()).slice(-2)
261
+ const today = `<span class="hljs-variable">${year}</span>-<span class="hljs-variable">${month}</span>-<span class="hljs-variable">${day}</span>`
262
+ <span class="hljs-built_in">return</span> today
263
+ }</code></pre>
264
+ </details>
265
+ <h2 class="para" data-pid="9" id="列表">
266
+ <span style="font-size: 24px">列表</span>
267
+ </h2>
268
+ <ul>
269
+ <li>
270
+ 山中何事?松花酿酒,春水煎茶。——张可久《人月圆·山中书事》
271
+ </li>
272
+ <li>
273
+ 远远围墙,隐隐茅堂。飏青旗、流水桥旁。——秦观《行香子·树绕村庄》
274
+ </li>
275
+ <li>
276
+ 两水夹明镜,双桥落彩虹。人烟寒橘柚,秋色老梧桐。——李白《秋登宣城谢眺北楼》
277
+ </li>
278
+ </ul>
279
+ <ol>
280
+ <li>林下漏月光,疏疏如残雪。——张岱《陶庵梦忆》</li>
281
+ <li>山中无甲子,寒尽不知年。——吴承恩《西游记》</li>
282
+ <li>
283
+ 窗间梅熟落蒂,墙下笋成出林。连雨不知春去,一晴方觉夏深。——范成大《喜晴》
284
+ </li>
285
+ </ol>
286
+ <h2 id="水平分隔线">
287
+ <span style="font-size: 24px">水平分隔线</span>
288
+ </h2>
289
+ <hr />
290
+ <h2 id="下标和上标">
291
+ <span style="font-size: 24px">下标和上标</span>
292
+ </h2>
293
+ <p>
294
+ <span style="font-size: 16px"
295
+ >x<sub>2</sub> 和 x<sup>2</sup></span
296
+ >
297
+ </p>
298
+ <p>&nbsp;</p>
299
+ <h2 id="引用区块">
300
+ <span style="font-size: 24px">引用区块</span>
301
+ </h2>
302
+ <blockquote>
303
+ <p>
304
+ 少年就是少年,他们看春风不喜,看夏蝉不烦,看秋风不悲,看冬雪不叹,看满身富贵懒察觉,看不公不允敢面对,只因他们是少年。
305
+ </p>
306
+ </blockquote>
307
+ </div>
308
+
309
+ <div id="blog_post_info_block">
310
+ <div id="BlogPostCategory">分类:</div>
311
+ <div id="EntryTag">标签:</div>
312
+
313
+ <div id="blog_post_info">
314
+ <div id="green_channel">
315
+ <a
316
+ href="javascript:void(0);"
317
+ id="green_channel_digg"
318
+ onclick="DiggIt(14978632,cb_blogId,1);green_channel_success(this,'谢谢推荐!');"
319
+ >好文要顶</a
320
+ >
321
+ <a
322
+ id="green_channel_follow"
323
+ onclick="follow('adce83c6-a022-414e-4369-08d6259d0de2');"
324
+ href="javascript:void(0);"
325
+ >关注我</a
326
+ >
327
+ <a
328
+ id="green_channel_favorite"
329
+ onclick="AddToWz(cb_entryId);return false;"
330
+ href="javascript:void(0);"
331
+ >收藏该文</a
332
+ >
333
+ <a
334
+ id="green_channel_weibo"
335
+ href="javascript:void(0);"
336
+ title="分享至新浪微博"
337
+ onclick="ShareToTsina()"
338
+ ><img src="/images/icon_weibo_24.png" alt=""
339
+ /></a>
340
+ <a
341
+ id="green_channel_wechat"
342
+ href="javascript:void(0);"
343
+ title="分享至微信"
344
+ onclick="shareOnWechat()"
345
+ ><img src="/images/wechat.png" alt=""
346
+ /></a>
347
+ </div>
348
+ <div id="author_profile">
349
+ <div
350
+ id="author_profile_info"
351
+ class="author_profile_info"
352
+ >
353
+ <a
354
+ href="https://home.cnblogs.com/u/guangzan/"
355
+ target="_blank"
356
+ ><img
357
+ src="https://pic.cnblogs.com/face/1501373/20200819130243.png"
358
+ class="author_avatar"
359
+ alt=""
360
+ /></a>
361
+ <div
362
+ id="author_profile_detail"
363
+ class="author_profile_info"
364
+ >
365
+ <a href="https://home.cnblogs.com/u/guangzan/"
366
+ >guangzan</a
367
+ ><br />
368
+ <a
369
+ href="https://home.cnblogs.com/u/guangzan/followees/"
370
+ >关注 - 52</a
371
+ ><br />
372
+ <a
373
+ href="https://home.cnblogs.com/u/guangzan/followers/"
374
+ >粉丝 - 279</a
375
+ >
376
+ </div>
377
+ </div>
378
+
379
+ <div id="author_profile_honor"></div>
380
+ <div id="author_profile_follow"></div>
381
+ </div>
382
+ <div id="div_digg">
383
+ <div
384
+ class="diggit"
385
+ onclick="votePost(14978632,'Digg')"
386
+ >
387
+ <span class="diggnum" id="digg_count">0</span>
388
+ </div>
389
+ <div
390
+ class="buryit"
391
+ onclick="votePost(14978632,'Bury')"
392
+ >
393
+ <span class="burynum" id="bury_count">0</span>
394
+ </div>
395
+
396
+ <div class="diggword" id="digg_tips"></div>
397
+ </div>
398
+
399
+ <script type="text/javascript">
400
+ currentDiggType = 0
401
+ </script>
402
+ </div>
403
+
404
+ <div id="post_next_prev">
405
+ <a
406
+ href="https://www.cnblogs.com/guangzan/p/14932931.html"
407
+ class="p_n_p_prefix"
408
+
409
+ </a>
410
+ 上一篇:
411
+ <a
412
+ href="https://www.cnblogs.com/guangzan/p/14932931.html"
413
+ title="发布于 2021-07-02 17:12"
414
+ >MetingJS 是如何配合 Aplayer 加载歌单的</a
415
+ >
416
+ </div>
417
+ </div>
418
+ </div>
419
+ <div class="postDesc">
420
+ posted @
421
+ <span id="post-date">2020-04-26 23:06</span>&nbsp;
422
+ <a href="https://www.cnblogs.com/guangzanassistant/"
423
+ >tona-test</a
424
+ >&nbsp; 阅读(<span id="post_view_count">0</span>)&nbsp;
425
+ 评论(<span id="post_comment_count">0</span>)&nbsp;
426
+ <a
427
+ href="https://www.cnblogs.com/guangzanassistant/p/12549775.md"
428
+ target="_blank"
429
+ >MD</a
430
+ >&nbsp;
431
+ <a
432
+ href="https://i.cnblogs.com/EditPosts.aspx?postid=12549775"
433
+ rel="nofollow"
434
+ >编辑</a
435
+ >&nbsp;
436
+ <a
437
+ href="javascript:void(0)"
438
+ onclick="AddToWz(12549775);return false;"
439
+ >收藏</a
440
+ >
441
+ </div>
442
+ </div>
443
+ </div>
444
+ <!--end: topics 文章、评论容器-->
445
+ </div>
446
+
447
+ <a name="!comments"></a>
448
+
449
+ <div id="blog-comments-placeholder">
450
+ <div id="comment_pager_top"></div>
451
+ <br />
452
+ <div class="feedback_area_title">评论列表</div>
453
+ <div class="feedbackNoItems">
454
+ <div class="feedbackNoItems"></div>
455
+ </div>
456
+ <div class="feedbackItem">
457
+ <div class="feedbackListSubtitle">
458
+ <div class="feedbackManage">
459
+ &nbsp;&nbsp;
460
+ <span class="comment_actions">
461
+ <a href="javascript:void(0);">回复</a>
462
+ <a href="javascript:void(0);">引用</a>
463
+ </span>
464
+ </div>
465
+ <a href="#4532247" class="layer">#1楼</a>
466
+ <a name="4532247" id="comment_anchor_4532247"></a>
467
+ <span class="comment_date">2020-03-25 17:40</span>
468
+ <a
469
+ id="a_comment_author_4532247"
470
+ href="https://www.cnblogs.com/ywheunji/"
471
+ target="_blank"
472
+ >you-wh</a
473
+ >
474
+ <div class="comment_vote">
475
+ <span class="comment_error" style="color: red"></span>
476
+ <a href="javascript:void(0);" class="comment_digg"
477
+ >支持(0)</a
478
+ >
479
+ <a href="javascript:void(0);" class="comment_burry"
480
+ >反对(0)</a
481
+ >
482
+ </div>
483
+ </div>
484
+ <div class="feedbackCon">
485
+ <div
486
+ id="comment_body_4646084"
487
+ data-format-type="Markdown"
488
+ class="blog_comment_body cnblogs-markdown"
489
+ >
490
+ <p>代码块测试</p>
491
+ <!-- <pre><code class="hljs javascript"><table class="hljs-ln"><tbody><tr><td class="hljs-ln-line hljs-ln-numbers" data-line-number="1"><div class="hljs-ln-n" data-line-number="1"></div></td><td class="hljs-ln-line hljs-ln-code" data-line-number="1"><span class="hljs-built_in">console</span>.log(<span class="hljs-string">'1213'</span>)</td></tr></tbody></table></code></pre> -->
492
+ </div>
493
+
494
+ <span id="comment_4646084_avatar" style="display: none">
495
+ https://pic.cnblogs.com/face/1501373/20200614011358.png
496
+ </span>
497
+ </div>
498
+ </div>
499
+ <div class="feedbackItem custom-comments-author">
500
+ <div class="feedbackListSubtitle">
501
+ <div class="feedbackManage">
502
+ &nbsp;&nbsp;
503
+ <span class="comment_actions">
504
+ <a
505
+ href="javascript:void(0);"
506
+ onclick="return ReplyComment(4532254, 'xTaYK2hVE0rO0OLryR6v3tJ57oNjsXUyAGNEPSn5jqoK93N3kSawlQ==')"
507
+ >
508
+ 回复
509
+ </a>
510
+ <a
511
+ href="javascript:void(0);"
512
+ onclick="return QuoteComment(4532254, 'xTaYK2hVE0rO0OLryR6v3tJ57oNjsXUyAGNEPSn5jqoK93N3kSawlQ==')"
513
+ >
514
+ 引用
515
+ </a>
516
+ </span>
517
+ </div>
518
+
519
+ <a href="#4532254" class="layer">#2楼</a>
520
+ <a name="4532254" id="comment_anchor_4532254"></a>
521
+ [<span class="louzhu">楼主</span>]
522
+
523
+ <span class="comment_date">2020-03-25 17:43</span>
524
+
525
+ <a
526
+ id="a_comment_author_4532254"
527
+ href="https://www.cnblogs.com/guangzan/"
528
+ target="_blank"
529
+ >guangzan</a
530
+ >
531
+
532
+ <div class="comment_vote">
533
+ <span class="comment_error" style="color: red"></span>
534
+ <a
535
+ href="javascript:void(0);"
536
+ class="comment_digg"
537
+ onclick="return voteComment(4532254, 'Digg', this.parentElement, false);"
538
+ >
539
+ 支持(0)
540
+ </a>
541
+ <a
542
+ href="javascript:void(0);"
543
+ class="comment_burry"
544
+ onclick="return voteComment(4532254, 'Bury', this.parentElement, false);"
545
+ >
546
+ 反对(0)
547
+ </a>
548
+ </div>
549
+ </div>
550
+ <div class="feedbackCon">
551
+ <div
552
+ id="comment_body_4532254"
553
+ data-format-type="Markdown"
554
+ class="blog_comment_body cnblogs-markdown"
555
+ >
556
+ <p>
557
+ <a
558
+ href="#4532247"
559
+ title="查看所回复的评论"
560
+ onclick="commentManager.renderComments(0,50,4532247);"
561
+ >@</a
562
+ >you-wh
563
+ 谢谢支持,欢迎使用.https://guangzan.gitee.io/tona-docs
564
+ </p>
565
+ </div>
566
+
567
+ <span id="comment_4532254_avatar" style="display: none">
568
+ <!-- https://pic.cnblogs.com/face/1501373/20200119190802.png -->
569
+ </span>
570
+ </div>
571
+ </div>
572
+ <div class="feedbackItem custom-comments-author">
573
+ <div class="feedbackListSubtitle">
574
+ <div class="feedbackManage">
575
+ &nbsp;&nbsp;
576
+
577
+ <span class="comment_actions">
578
+ <a
579
+ href="javascript:void(0);"
580
+ onclick="return ReplyComment(4539378, 'xTaYK2hVE0rO0OLryR6v3tJ57oNjsXUyAGNEPSn5jqoK93N3kSawlQ==')"
581
+ >
582
+ 回复
583
+ </a>
584
+ <a
585
+ href="javascript:void(0);"
586
+ onclick="return QuoteComment(4539378, 'xTaYK2hVE0rO0OLryR6v3tJ57oNjsXUyAGNEPSn5jqoK93N3kSawlQ==')"
587
+ >
588
+ 引用
589
+ </a>
590
+ </span>
591
+ </div>
592
+
593
+ <a href="#4539378" class="layer">#3楼</a>
594
+ <a name="4539378" id="comment_anchor_4539378"></a>
595
+ [<span class="louzhu">楼主</span>]
596
+ <span id="comment-maxId" style="display: none">4539378</span>
597
+ <span id="comment-maxDate" style="display: none"
598
+ >2020/4/2 上午12:27:16</span
599
+ >
600
+
601
+ <span class="comment_date">2020-04-02 00:27</span>
602
+
603
+ <a
604
+ id="a_comment_author_4539378"
605
+ href="https://www.cnblogs.com/guangzan/"
606
+ target="_blank"
607
+ >guangzan</a
608
+ >
609
+
610
+ <div class="comment_vote">
611
+ <span class="comment_error" style="color: red"></span>
612
+ <a
613
+ href="javascript:void(0);"
614
+ class="comment_digg"
615
+ onclick="return voteComment(4539378, 'Digg', this.parentElement, false);"
616
+ >
617
+ 支持(0)
618
+ </a>
619
+ <a
620
+ href="javascript:void(0);"
621
+ class="comment_burry"
622
+ onclick="return voteComment(4539378, 'Bury', this.parentElement, false);"
623
+ >
624
+ 反对(0)
625
+ </a>
626
+ </div>
627
+ </div>
628
+ <div class="feedbackCon">
629
+ <div
630
+ id="comment_body_4539378"
631
+ data-format-type="Markdown"
632
+ class="blog_comment_body cnblogs-markdown"
633
+ >
634
+ <p>emoji 🤔</p>
635
+ </div>
636
+ <span id="comment_4539378_avatar" style="display: none">
637
+ <!-- https://pic.cnblogs.com/face/1501373/20200119190802.png -->
638
+ </span>
639
+ </div>
640
+ </div>
641
+
642
+ <div id="comment_pager_bottom">
643
+ <div class="pager">
644
+ <!-- 上一页 -->
645
+ <a
646
+ href="#!comments"
647
+ onclick="commentManager.renderComments(1, 50); return false;"
648
+ >
649
+ &lt; Prev
650
+ </a>
651
+
652
+ <!-- 第一页 -->
653
+ <a
654
+ href="#!comments"
655
+ onclick="commentManager.renderComments(1, 50); return false;"
656
+ >
657
+ 1
658
+ </a>
659
+
660
+ <!-- 前半部分页码 -->
661
+
662
+ <!-- 当前页 -->
663
+ <span class="current">2</span>
664
+
665
+ <!-- 后半部分页码 -->
666
+
667
+ <!-- 末尾页 -->
668
+ <a
669
+ href="#!comments"
670
+ onclick="commentManager.renderComments(3, 50); return false;"
671
+ >
672
+ 3
673
+ </a>
674
+
675
+ <!-- 下一页 -->
676
+ <a
677
+ href="#!comments"
678
+ onclick="commentManager.renderComments(3, 50); return false;"
679
+ >
680
+ Next &gt;
681
+ </a>
682
+ </div>
683
+ </div>
684
+ </div>
685
+
686
+ <div id="comment_form" class="commentform">
687
+ <a name="commentform"></a>
688
+ <div id="divCommentShow"></div>
689
+ <div id="comment_nav">
690
+ <span id="span_refresh_tips"></span
691
+ ><a
692
+ href="javascript:void(0);"
693
+ onclick="return RefreshCommentList();"
694
+ id="lnk_RefreshComments"
695
+ runat="server"
696
+ clientidmode="Static"
697
+ >刷新评论</a
698
+ ><a href="#" onclick="return RefreshPage();">刷新页面</a
699
+ ><a href="#top">返回顶部</a>
700
+ </div>
701
+ <div id="comment_form_container" style="visibility: visible">
702
+ <div id="commentform_title">发表评论</div>
703
+ <span id="tip_comment" style="color: Red"></span>
704
+ <div class="commentbox_main comment_textarea">
705
+ <div class="commentbox_title">
706
+ <div class="commentbox_title_left">
707
+ <span
708
+ id="btn_edit_comment"
709
+ class="commentbox_tab active"
710
+ title="编辑评论"
711
+ >编辑</span
712
+ >
713
+ <span
714
+ id="btn_preview_comment"
715
+ class="commentbox_tab"
716
+ title="Markdown 预览"
717
+ >预览</span
718
+ >
719
+ </div>
720
+ <div class="commentbox_title_right">
721
+ <span
722
+ id="ubb_bold"
723
+ class="comment_icon"
724
+ alt="粗体"
725
+ title="添加粗体(Ctrl + B)"
726
+ >
727
+ <svg
728
+ class="comment_svg"
729
+ version="1.1"
730
+ viewBox="0 0 24 24"
731
+ xmlns="http://www.w3.org/2000/svg"
732
+ >
733
+ <g fill-rule="evenodd">
734
+ <path
735
+ d="m13.221 19c1.4414 0 2.5793-0.27451 3.3759-0.82353 0.92931-0.66667 1.4034-1.7059 1.4034-3.1176 0-0.94118-0.22759-1.7059-0.66379-2.2549-0.45517-0.56863-1.119-0.94118-2.0103-1.1176 0.68276-0.27451 1.1948-0.64706 1.5552-1.1569 0.36034-0.54902 0.55-1.2157 0.55-2 0-1.0588-0.36034-1.902-1.0621-2.5294-0.75862-0.66667-1.8207-1-3.1672-1h-6.2017v14h6.2207zm-0.82196-8h-3.3987v-4h3.4367c0.91139 0 1.557 0.15686 1.9747 0.47059 0.37975 0.29412 0.58861 0.78431 0.58861 1.451 0 0.72549-0.20886 1.2549-0.58861 1.5882-0.39873 0.31373-1.0633 0.4902-2.0127 0.4902zm0.52612 6h-3.9249v-4h3.9855c1.052 0 1.8208 0.16216 2.3064 0.48649 0.46532 0.32432 0.70809 0.84685 0.70809 1.5856 0 0.72072-0.3237 1.2252-0.9711 1.5495-0.50578 0.25225-1.2139 0.37838-2.104 0.37838z"
736
+ fill-rule="nonzero"
737
+ stroke-width=".35"
738
+ ></path>
739
+ </g>
740
+ </svg>
741
+ </span>
742
+ <span
743
+ id="ubb_url"
744
+ class="comment_icon"
745
+ title="添加链接(Ctrl + K)"
746
+ alt="链接"
747
+ >
748
+ <svg
749
+ class="comment_svg comment_svg_stroke"
750
+ viewBox="0 0 24 24"
751
+ xmlns="http://www.w3.org/2000/svg"
752
+ >
753
+ <g fill-rule="evenodd">
754
+ <g
755
+ transform="translate(4 4)"
756
+ fill-rule="nonzero"
757
+ stroke-width=".4"
758
+ >
759
+ <path
760
+ d="m6.304 9.696c-0.288-0.288-0.512-0.608-0.704-0.992-0.16-0.32-0.032-0.704 0.288-0.864 0.32-0.16 0.704-0.032 0.864 0.288 0.128 0.224 0.256 0.448 0.448 0.64 0.928 0.928 2.432 0.928 3.36 0l3.36-3.328c0.928-0.928 0.928-2.432 0-3.36s-2.432-0.928-3.36 0l-2.272 2.272c-0.256 0.256-0.64 0.256-0.896 0-0.256-0.256-0.256-0.64 0-0.896l2.272-2.272c1.44-1.44 3.744-1.44 5.184 0 1.44 1.44 1.44 3.744 0 5.184l-3.36 3.296c-0.704 0.704-1.632 1.088-2.592 1.088-0.928 0-1.856-0.352-2.592-1.056z"
761
+ ></path>
762
+ <path
763
+ d="m3.776 15.808c-0.992 0-1.888-0.384-2.592-1.056-1.44-1.44-1.44-3.744 0-5.184l3.328-3.328c1.44-1.44 3.744-1.44 5.184 0 0.288 0.288 0.544 0.64 0.736 1.024 0.16 0.32 0 0.704-0.32 0.864-0.32 0.16-0.704 0-0.864-0.32-0.128-0.256-0.288-0.48-0.48-0.672-0.928-0.928-2.432-0.928-3.36 0l-3.296 3.328c-0.928 0.928-0.928 2.432 0 3.36 0.448 0.448 1.056 0.704 1.664 0.704 0.608 0 1.248-0.256 1.664-0.704l2.112-2.112c0.256-0.256 0.64-0.256 0.896 0s0.256 0.64 0 0.896l-2.112 2.112c-0.672 0.704-1.568 1.088-2.56 1.088z"
764
+ ></path>
765
+ </g>
766
+ </g>
767
+ </svg>
768
+ </span>
769
+ <span
770
+ id="ubb_code"
771
+ class="comment_icon"
772
+ title="添加代码(Ctrl + `)"
773
+ alt="代码"
774
+ >
775
+ <svg
776
+ class="comment_svg comment_svg_stroke"
777
+ version="1.1"
778
+ viewBox="0 0 24 24"
779
+ xmlns="http://www.w3.org/2000/svg"
780
+ >
781
+ <g fill-rule="evenodd">
782
+ <g
783
+ transform="translate(16 6)"
784
+ stroke-linecap="round"
785
+ stroke-width="2"
786
+ >
787
+ <line x1=".5" x2="4.5" y1=".7" y2="6.3"></line>
788
+ <line
789
+ transform="translate(2.5 9.1) scale(1 -1) translate(-2.5 -9.1)"
790
+ x1=".5"
791
+ x2="4.5"
792
+ y1="6.3"
793
+ y2="11.9"
794
+ ></line>
795
+ </g>
796
+ <g
797
+ transform="translate(3 6.1)"
798
+ stroke-linecap="round"
799
+ stroke-width="2"
800
+ >
801
+ <line
802
+ transform="translate(2.5 3.5) scale(-1 1) translate(-2.5 -3.5)"
803
+ x1=".5"
804
+ x2="4.5"
805
+ y1=".7"
806
+ y2="6.3"
807
+ ></line>
808
+ <line
809
+ transform="translate(2.5 9.1) scale(-1) translate(-2.5 -9.1)"
810
+ x1=".5"
811
+ x2="4.5"
812
+ y1="6.3"
813
+ y2="11.9"
814
+ ></line>
815
+ </g>
816
+ <path
817
+ transform="translate(12 12.5) scale(1 -1) translate(-12 -12.5)"
818
+ d="m10.778 7.1249c0.50008-0.11366 0.9978 0.16911 1.1643 0.64128l0.032406 0.11223 2 8.8c0.1224 0.53855-0.21496 1.0744-0.75351 1.1968-0.50008 0.11366-0.9978-0.16911-1.1643-0.64128l-0.032406-0.11223-2-8.8c-0.1224-0.53855 0.21496-1.0744 0.75351-1.1968z"
819
+ fill-rule="nonzero"
820
+ stroke-width=".25"
821
+ ></path>
822
+ </g>
823
+ </svg>
824
+ </span>
825
+ <span
826
+ id="ubb_quote"
827
+ class="comment_icon"
828
+ title="添加引用(Ctrl + Q)"
829
+ alt="引用"
830
+ >
831
+ <svg
832
+ class="comment_svg"
833
+ version="1.1"
834
+ viewBox="0 0 24 24"
835
+ xmlns="http://www.w3.org/2000/svg"
836
+ >
837
+ <g fill-rule="evenodd">
838
+ <g
839
+ transform="translate(5 4)"
840
+ fill-rule="nonzero"
841
+ stroke-width=".25"
842
+ >
843
+ <path
844
+ d="m5.0013 15v-5.2702h-2.8008c-0.13413-3.3762 1.2004-6.2143 4.0009-8.5135l-1.2-1.2163c-3.335 2.2996-5.0013 5.8119-5.0013 10.54v4.4595h5.0013-1.285e-5zm8.7987 0v-5.2702h-2.8008c-0.13453-3.3762 1.2-6.2143 4.0009-8.5135l-1.2-1.2163c-3.335 2.2996-5.0013 5.8119-5.0013 10.54v4.4595h5.0013-1.28e-5z"
845
+ ></path>
846
+ </g>
847
+ </g>
848
+ </svg>
849
+ </span>
850
+ <span
851
+ id="ubb_img"
852
+ class="comment_icon"
853
+ alt="图片"
854
+ title="上传图片(Ctrl + I)"
855
+ >
856
+ <svg
857
+ class="comment_svg"
858
+ version="1.1"
859
+ viewBox="0 0 24 24"
860
+ xmlns="http://www.w3.org/2000/svg"
861
+ >
862
+ <g fill-rule="evenodd">
863
+ <g transform="translate(3 3.8)" fill-rule="nonzero">
864
+ <path
865
+ d="m14.1 0.58235h-11.2c-1.32 0-2.4 1.0482-2.4 2.3294v10.871c0 1.2812 1.08 2.3294 2.4 2.3294h11.2c1.32 0 2.4-1.0482 2.4-2.3294v-10.871c0-1.2812-1.08-2.3294-2.4-2.3294zm0.7 13.569-3.63-3.4165 1.33-1.2909c0.21-0.20382 0.59-0.20382 0.8 0l1.6 1.5529v2.7856c0 0.13588-0.04 0.26206-0.1 0.36882zm-11.9-12.016h11.2c0.44 0 0.8 0.34941 0.8 0.77647v5.8915l-0.47-0.45618c-0.84-0.825-2.22-0.825-3.07 0l-1.35 1.3103-2.39-2.2421c-0.85-0.825-2.22-0.825-3.05-0.019412l-2.48 2.2615v-6.7456c0.01-0.42706 0.37-0.77647 0.81-0.77647zm-0.8 11.647v-1.9897l3.6-3.2806c0.21-0.20382 0.58-0.21353 0.81 0.0097059l6.43 6.0371h-10.04c-0.44 0-0.8-0.33971-0.8-0.77647z"
866
+ ></path>
867
+ <ellipse
868
+ cx="10.5"
869
+ cy="6.4059"
870
+ rx="1"
871
+ ry="1"
872
+ ></ellipse>
873
+ </g>
874
+ </g>
875
+ </svg>
876
+ </span>
877
+ </div>
878
+ </div>
879
+ <div style="display: none">
880
+ <span id="comment_edit_id"></span>
881
+ <span id="span_parentcomment_id"></span>
882
+ <span id="span_parent_id"></span>
883
+ <span id="span_comment_replyto"></span>
884
+ <span id="span_comment_posted"></span>
885
+ <span id="span_current_user_id"
886
+ >8a1d5911-2fd3-40d4-1799-08d6ae5bbb5c</span
887
+ >
888
+ </div>
889
+ <textarea
890
+ id="tbCommentBody"
891
+ placeholder="支持 Markdown"
892
+ ></textarea>
893
+ <div
894
+ id="tbCommentBodyPreview"
895
+ class="feedbackCon"
896
+ style="display: none"
897
+ >
898
+ <div
899
+ id="tbCommentBodyPreviewBody"
900
+ class="blog_comment_body comment_preview cnblogs-markdown"
901
+ ></div>
902
+ </div>
903
+ <div class="commentbox_footer">
904
+ <a class="comment_option">Markdown 帮助</a>
905
+ <span id="btn_comment_options" class="comment_option">
906
+ <input
907
+ id="ubb_auto_completion"
908
+ class="inline_middle"
909
+ type="checkbox"
910
+ />
911
+ <label class="inline_middle" for="ubb_auto_completion"
912
+ >自动补全</label
913
+ >
914
+ </span>
915
+ </div>
916
+ </div>
917
+ <p id="commentbox_opt">
918
+ <input
919
+ id="btn_comment_submit"
920
+ type="button"
921
+ class="comment_btn"
922
+ title="提交评论(Ctrl + Enter)"
923
+ value="提交评论"
924
+ />
925
+ <span id="span_comment_canceledit" style="display: none"
926
+ ><a
927
+ href="javascript:void(0);"
928
+ onclick="return CancelCommentEdit()"
929
+ >不改了</a
930
+ ></span
931
+ >
932
+ <a href="javascript:void(0);" onclick="return logout();"
933
+ >退出</a
934
+ >
935
+ <a
936
+ id="commentbox_opt_sub"
937
+ href="javascript:void(0);"
938
+ title="订阅后有新评论时会邮件通知您"
939
+ onclick="commentManager.Subscribe()"
940
+ >订阅评论</a
941
+ >
942
+ </p>
943
+ <div id="tip_comment2" style="color: Red"></div>
944
+ <p>[Ctrl+Enter快捷键提交]</p>
945
+ <div class="under-comment-nav under-comment-box-nav">
946
+ <ul>
947
+ <li>
948
+ <a
949
+ href="/"
950
+ onclick="ga('send', 'event', 'Link', 'click', 'under-comment-nav-sitehome')"
951
+ >首页</a
952
+ >
953
+ </li>
954
+ <li>
955
+ <a
956
+ href="//news.cnblogs.com/"
957
+ onclick="ga('send', 'event', 'Link', 'click', 'under-comment-nav-news')"
958
+ >新闻</a
959
+ >
960
+ </li>
961
+ <li>
962
+ <a
963
+ href="//q.cnblogs.com/"
964
+ onclick="ga('send', 'event', 'Link', 'click', 'under-comment-nav-q')"
965
+ >博问</a
966
+ >
967
+ </li>
968
+ <li>
969
+ <a
970
+ href="//brands.cnblogs.com/"
971
+ onclick="ga('send', 'event', 'Link', 'click', 'under-comment-nav-brands')"
972
+ >专区</a
973
+ >
974
+ </li>
975
+ <li>
976
+ <a
977
+ href="//ing.cnblogs.com/"
978
+ onclick="ga('send', 'event', 'Link', 'click', 'under-comment-nav-ing')"
979
+ >闪存</a
980
+ >
981
+ </li>
982
+ <li>
983
+ <a
984
+ href="//edu.cnblogs.com/"
985
+ onclick="ga('send', 'event', 'Link', 'click', 'under-comment-nav-edu')"
986
+ >班级</a
987
+ >
988
+ </li>
989
+ </ul>
990
+ </div>
991
+ </div>
992
+ <div
993
+ class="ad_text_commentbox"
994
+ id="ad_text_under_commentbox"
995
+ ></div>
996
+ <div id="ad_t2">
997
+ <a href="" target="_blank"
998
+ >【推荐】广告广告广告广告广告广告广告</a
999
+ ><br />
1000
+ <a href="" target="_blank"
1001
+ >【推荐】广告广告广告广告广告广告广告广告广告广告广告</a
1002
+ ><br />
1003
+ <a href="" target="_blank"
1004
+ >【推荐】广告广告广告广告广告广告广告广告广告广告</a
1005
+ ><br />
1006
+ <a href="" target="_blank"
1007
+ >【推荐】广告广告广告广告广告广告广告广告广告广告广告广告广告广告广告广告广告</a
1008
+ ><br />
1009
+ </div>
1010
+ <div id="opt_under_post"></div>
1011
+ <div id="cnblogs_c1" class="c_ad_block">
1012
+ <div
1013
+ id="div-gpt-ad-1546353474406-0"
1014
+ style="height: 250px; width: 300px"
1015
+ ></div>
1016
+ </div>
1017
+ <div id="under_post_card1">
1018
+ <div class="under-post-card">
1019
+ <b>AWS免费产品</b>:<br />·
1020
+ <a
1021
+ href="https://aws.amazon.com/cn/free/webapps/?trk=ba_a134p000006vc6OAAQ&amp;trkCampaign=webapps&amp;sc_channel=ba&amp;sc_campaign=cnblogs&amp;sc_outcome=Acquisition&amp;sc_geo=CHNA&amp;sc_country=CN&amp;sc_publisher=Others"
1022
+ target="_blank"
1023
+ >如何在AWS上免费构建网站</a
1024
+ ><br />·
1025
+ <a
1026
+ href="https://aws.amazon.com/cn/free/storage/?trk=ba_a134p000006vc7JAAQ&amp;trkCampaign=storage&amp;sc_channel=ba&amp;sc_campaign=cnblogs&amp;sc_outcome=Acquisition&amp;sc_geo=CHNA&amp;sc_country=CN&amp;sc_publisher=Others"
1027
+ target="_blank"
1028
+ >AWS免费云存储解决方案</a
1029
+ ><br />·
1030
+ <a
1031
+ href="https://aws.amazon.com/cn/free/database/?trk=ba_a134p000006vc7YAAQ&amp;trkCampaign=database&amp;sc_channel=ba&amp;sc_campaign=cnblogs&amp;sc_outcome=Acquisition&amp;sc_geo=CHNA&amp;sc_country=CN&amp;sc_publisher=Others"
1032
+ target="_blank"
1033
+ >在AWS上免费构建数据库</a
1034
+ ><br />·
1035
+ <a
1036
+ href="https://aws.amazon.com/cn/free/machine-learning/?trk=ba_a134p000006vc7nAAA&amp;trkCampaign=ML&amp;sc_channel=ba&amp;sc_campaign=cnblogs&amp;sc_outcome=Acquisition&amp;sc_geo=CHNA&amp;sc_country=CN&amp;sc_publisher=Others"
1037
+ target="_blank"
1038
+ >AWS上的免费机器学习</a
1039
+ >
1040
+ </div>
1041
+ </div>
1042
+ <div id="under_post_news"></div>
1043
+ <div id="cnblogs_c2" class="c_ad_block">
1044
+ <div
1045
+ id="div-gpt-ad-1539008685004-0"
1046
+ style="height: 60px; width: 468px"
1047
+ ></div>
1048
+ </div>
1049
+ <div id="under_post_card2">
1050
+ <div class="itnews under-post-card">
1051
+ <b>最新新闻</b>:
1052
+ <br />
1053
+ ·
1054
+ <a href="//news.cnblogs.com/n/689056/" target="_blank"
1055
+ >PlayStation日本工作室4月1日重组 部分职能转移至全球工作室</a
1056
+ >
1057
+ <br />
1058
+ ·
1059
+ <a href="//news.cnblogs.com/n/689055/" target="_blank"
1060
+ >谷歌宣布资助两名专职人员开发和维护Linux内核安全</a
1061
+ >
1062
+ <br />
1063
+ ·
1064
+ <a href="//news.cnblogs.com/n/689054/" target="_blank"
1065
+ >彭博社:EA取消了一个开发超过5年的全新IP</a
1066
+ >
1067
+ <br />
1068
+ ·
1069
+ <a href="//news.cnblogs.com/n/689014/" target="_blank"
1070
+ >货拉拉安全规则被指“触目惊心” 忽视用户终尝苦果</a
1071
+ >
1072
+ <br />
1073
+ ·
1074
+ <a href="//news.cnblogs.com/n/689053/" target="_blank"
1075
+ >细胞间的“秘密战争”,人造器官能否跨越这个难关?</a
1076
+ >
1077
+ <br />
1078
+ »
1079
+ <a
1080
+ href="https://news.cnblogs.com/"
1081
+ title="IT 新闻"
1082
+ target="_blank"
1083
+ >更多新闻...</a
1084
+ >
1085
+ </div>
1086
+ </div>
1087
+ <div id="under_post_kb">
1088
+ <div class="itnews c_ad_block">
1089
+ <b>最新 IT 新闻</b>:
1090
+ <br />
1091
+ ·
1092
+ <a href="//news.cnblogs.com/n/660642/" target="_blank"
1093
+ >当当副总裁阚敏:俞渝仍掌控公司,李国庆离越远越好</a
1094
+ >
1095
+ <br />
1096
+ ·
1097
+ <a href="//news.cnblogs.com/n/660641/" target="_blank"
1098
+ >一文读懂李国庆夺权当当:连发三份公告 细数俞渝七宗罪</a
1099
+ >
1100
+ <br />
1101
+ ·
1102
+ <a href="//news.cnblogs.com/n/660640/" target="_blank"
1103
+ >当当电话会议实录:李国庆抢公章行为非法 俞渝持股52.23%</a
1104
+ >
1105
+ <br />
1106
+ ·
1107
+ <a href="//news.cnblogs.com/n/660639/" target="_blank"
1108
+ >律师解读李国庆夺公章事件:临时股东会决议很可能认定无效</a
1109
+ >
1110
+ <br />
1111
+ ·
1112
+ <a href="//news.cnblogs.com/n/660638/" target="_blank"
1113
+ >李国庆方面再发公告:当当股权作为夫妻共同财产一人一半</a
1114
+ >
1115
+ <br />
1116
+ »
1117
+ <a
1118
+ href="https://news.cnblogs.com/"
1119
+ title="IT 新闻"
1120
+ target="_blank"
1121
+ >更多新闻...</a
1122
+ >
1123
+ </div>
1124
+ </div>
1125
+ <div id="HistoryToday" class="c_ad_block"></div>
1126
+ </div>
1127
+ </div>
1128
+ </div>
1129
+ <div id="sideBar">
1130
+ <div id="sideBarMain">
1131
+ <div id="sidebar_news" class="newsItem">
1132
+ <h3 class="catListTitle">公告</h3>
1133
+ <div id="blog-news">
1134
+ <div id="profile_block">
1135
+ 昵称:
1136
+ <a href="https://home.cnblogs.com/u/guangzan/"> guangzan </a>
1137
+ <br />
1138
+ 园龄:
1139
+ <a
1140
+ href="https://home.cnblogs.com/u/guangzan/"
1141
+ title="入园时间:2018-09-29"
1142
+ >
1143
+ 2年7个月
1144
+ </a>
1145
+ <br />
1146
+ 粉丝:
1147
+ <a href="https://home.cnblogs.com/u/guangzan/followers/">
1148
+ 252
1149
+ </a>
1150
+ <br />
1151
+ 关注:
1152
+ <a href="https://home.cnblogs.com/u/guangzan/followees/">
1153
+ 40
1154
+ </a>
1155
+ <div id="p_b_follow">
1156
+ <a href="javascript:void(0)">+加关注</a>
1157
+ </div>
1158
+ </div>
1159
+ </div>
1160
+ </div>
1161
+ <div id="sidebar_c3"></div>
1162
+ <div id="blog-calendar">
1163
+ <table
1164
+ id="blogCalendar"
1165
+ class="Cal"
1166
+ cellspacing="0"
1167
+ cellpadding="0"
1168
+ title="Calendar"
1169
+ border="0"
1170
+ >
1171
+ <tbody>
1172
+ <tr>
1173
+ <td colspan="7">
1174
+ <table class="CalTitle" cellspacing="0" border="0">
1175
+ <tbody>
1176
+ <tr>
1177
+ <td class="CalNextPrev">
1178
+ <a
1179
+ href="javascript:void(0);"
1180
+ onclick="loadBlogCalendar('2021/04/23'); return false;"
1181
+ >&lt;</a
1182
+ >
1183
+ </td>
1184
+ <td align="center">2021年5月</td>
1185
+ <td align="right" class="CalNextPrev">
1186
+ <a
1187
+ href="javascript:void(0);"
1188
+ onclick="loadBlogCalendar('2021/06/23'); return false;"
1189
+ >&gt;</a
1190
+ >
1191
+ </td>
1192
+ </tr>
1193
+ </tbody>
1194
+ </table>
1195
+ </td>
1196
+ </tr>
1197
+ <tr>
1198
+ <th
1199
+ class="CalDayHeader"
1200
+ align="center"
1201
+ abbr="日"
1202
+ scope="col"
1203
+ >
1204
+
1205
+ </th>
1206
+ <th
1207
+ class="CalDayHeader"
1208
+ align="center"
1209
+ abbr="一"
1210
+ scope="col"
1211
+ >
1212
+
1213
+ </th>
1214
+ <th
1215
+ class="CalDayHeader"
1216
+ align="center"
1217
+ abbr="二"
1218
+ scope="col"
1219
+ >
1220
+
1221
+ </th>
1222
+ <th
1223
+ class="CalDayHeader"
1224
+ align="center"
1225
+ abbr="三"
1226
+ scope="col"
1227
+ >
1228
+
1229
+ </th>
1230
+ <th
1231
+ class="CalDayHeader"
1232
+ align="center"
1233
+ abbr="四"
1234
+ scope="col"
1235
+ >
1236
+
1237
+ </th>
1238
+ <th
1239
+ class="CalDayHeader"
1240
+ align="center"
1241
+ abbr="五"
1242
+ scope="col"
1243
+ >
1244
+
1245
+ </th>
1246
+ <th
1247
+ class="CalDayHeader"
1248
+ align="center"
1249
+ abbr="六"
1250
+ scope="col"
1251
+ >
1252
+
1253
+ </th>
1254
+ </tr>
1255
+ <tr>
1256
+ <td class="CalOtherMonthDay" align="center">25</td>
1257
+ <td class="CalOtherMonthDay" align="center">26</td>
1258
+ <td class="CalOtherMonthDay" align="center">27</td>
1259
+ <td class="CalOtherMonthDay" align="center">28</td>
1260
+ <td class="CalOtherMonthDay" align="center">29</td>
1261
+ <td class="CalOtherMonthDay" align="center">30</td>
1262
+ <td class="CalWeekendDay" align="center">1</td>
1263
+ </tr>
1264
+ <tr>
1265
+ <td class="CalWeekendDay" align="center">2</td>
1266
+ <td class="" align="center">3</td>
1267
+ <td class="" align="center">4</td>
1268
+ <td class="" align="center">5</td>
1269
+ <td class="" align="center">6</td>
1270
+ <td class="" align="center">
1271
+ <a
1272
+ href="https://www.cnblogs.com/guangzan/archive/2021/05/07.html"
1273
+ ><u>7</u></a
1274
+ >
1275
+ </td>
1276
+ <td class="CalWeekendDay" align="center">
1277
+ <a
1278
+ href="https://www.cnblogs.com/guangzan/archive/2021/05/08.html"
1279
+ ><u>8</u></a
1280
+ >
1281
+ </td>
1282
+ </tr>
1283
+ <tr>
1284
+ <td class="CalWeekendDay" align="center">9</td>
1285
+ <td class="" align="center">10</td>
1286
+ <td class="" align="center">11</td>
1287
+ <td class="" align="center">12</td>
1288
+ <td class="" align="center">13</td>
1289
+ <td class="" align="center">14</td>
1290
+ <td class="CalWeekendDay" align="center">15</td>
1291
+ </tr>
1292
+ <tr>
1293
+ <td class="CalWeekendDay" align="center">16</td>
1294
+ <td class="" align="center">17</td>
1295
+ <td class="" align="center">18</td>
1296
+ <td class="" align="center">19</td>
1297
+ <td class="" align="center">
1298
+ <a
1299
+ href="https://www.cnblogs.com/guangzan/archive/2021/05/20.html"
1300
+ ><u>20</u></a
1301
+ >
1302
+ </td>
1303
+ <td class="" align="center">21</td>
1304
+ <td class="CalWeekendDay" align="center">22</td>
1305
+ </tr>
1306
+ <tr>
1307
+ <td class="CalTodayDay" align="center">
1308
+ <a
1309
+ href="https://www.cnblogs.com/guangzan/archive/2021/05/23.html"
1310
+ ><u>23</u></a
1311
+ >
1312
+ </td>
1313
+ <td class="" align="center">24</td>
1314
+ <td class="" align="center">25</td>
1315
+ <td class="" align="center">26</td>
1316
+ <td class="" align="center">27</td>
1317
+ <td class="" align="center">28</td>
1318
+ <td class="CalWeekendDay" align="center">29</td>
1319
+ </tr>
1320
+ <tr>
1321
+ <td class="CalWeekendDay" align="center">30</td>
1322
+ <td class="" align="center">31</td>
1323
+ <td class="CalOtherMonthDay" align="center">1</td>
1324
+ <td class="CalOtherMonthDay" align="center">2</td>
1325
+ <td class="CalOtherMonthDay" align="center">3</td>
1326
+ <td class="CalOtherMonthDay" align="center">4</td>
1327
+ <td class="CalOtherMonthDay" align="center">5</td>
1328
+ </tr>
1329
+ </tbody>
1330
+ </table>
1331
+ </div>
1332
+ <div id="leftcontentcontainer">
1333
+ <div id="blog-sidecolumn">
1334
+ <!-- 搜索 -->
1335
+ <div id="sidebar_search" class="sidebar-block">
1336
+ <div id="sidebar_search" class="mySearch">
1337
+ <h3 class="catListTitle">搜索</h3>
1338
+ <div id="sidebar_search_box">
1339
+ <div id="widget_my_zzk" class="div_my_zzk">
1340
+ <input
1341
+ type="text"
1342
+ id="q"
1343
+ onkeydown="return zzk_go_enter(event);"
1344
+ class="input_my_zzk"
1345
+ />&nbsp;<input
1346
+ onclick="zzk_go()"
1347
+ type="button"
1348
+ value="找找看"
1349
+ id="btnZzk"
1350
+ class="btn_my_zzk"
1351
+ />
1352
+ </div>
1353
+ <div id="widget_my_google" class="div_my_zzk">
1354
+ <input
1355
+ type="text"
1356
+ name="google_q"
1357
+ id="google_q"
1358
+ onkeydown="return google_go_enter(event);"
1359
+ class="input_my_zzk"
1360
+ />&nbsp;<input
1361
+ onclick="google_go()"
1362
+ type="button"
1363
+ value="谷歌搜索"
1364
+ class="btn_my_zzk"
1365
+ />
1366
+ </div>
1367
+ </div>
1368
+ </div>
1369
+ </div>
1370
+ <!-- 常用链接 -->
1371
+ <div id="sidebar_shortcut" class="sidebar-block">
1372
+ <div class="catListLink">
1373
+ <h3 class="catListTitle">常用链接</h3>
1374
+ <ul>
1375
+ <li>
1376
+ <a
1377
+ href="https://www.cnblogs.com/guangzan/p/"
1378
+ title="我的博客的随笔列表"
1379
+ >我的随笔</a
1380
+ >
1381
+ </li>
1382
+ <li>
1383
+ <a
1384
+ href="https://www.cnblogs.com/guangzan/MyComments.html"
1385
+ title="我的发表过的评论列表"
1386
+ >我的评论</a
1387
+ >
1388
+ </li>
1389
+ <li>
1390
+ <a
1391
+ href="https://www.cnblogs.com/guangzan/OtherPosts.html"
1392
+ title="我评论过的随笔列表"
1393
+ >我的参与</a
1394
+ >
1395
+ </li>
1396
+ <li>
1397
+ <a
1398
+ href="https://www.cnblogs.com/guangzan/RecentComments.html"
1399
+ title="我的博客的评论列表"
1400
+ >最新评论</a
1401
+ >
1402
+ </li>
1403
+ <li>
1404
+ <a
1405
+ href="https://www.cnblogs.com/guangzan/tag/"
1406
+ title="我的博客的标签列表"
1407
+ >我的标签</a
1408
+ >
1409
+ </li>
1410
+ </ul>
1411
+ </div>
1412
+ </div>
1413
+ <!-- 最新随笔 -->
1414
+ <div id="sidebar_recentposts" class="sidebar-block">
1415
+ <div class="catListEssay">
1416
+ <h3 class="catListTitle">最新随笔</h3>
1417
+ <ul>
1418
+ <li>
1419
+ <a
1420
+ href="https://www.cnblogs.com/guangzan/p/14801294.html"
1421
+ >1.非标准用法在 ES module下的解决方案</a
1422
+ >
1423
+ </li>
1424
+ <li>
1425
+ <a
1426
+ href="https://www.cnblogs.com/guangzan/p/14801290.html"
1427
+ >2.Node.js Built-Ins Define/ Mock / Shim/ Sham/
1428
+ Polyfill</a
1429
+ >
1430
+ </li>
1431
+ <li>
1432
+ <a
1433
+ href="https://www.cnblogs.com/guangzan/p/14790923.html"
1434
+ >3.ts event 类型</a
1435
+ >
1436
+ </li>
1437
+ <li>
1438
+ <a
1439
+ href="https://www.cnblogs.com/guangzan/p/14744226.html"
1440
+ >4.webpack5热更新失效</a
1441
+ >
1442
+ </li>
1443
+ <li>
1444
+ <a
1445
+ href="https://www.cnblogs.com/guangzan/p/14741436.html"
1446
+ >5.webpack4 升级到 5</a
1447
+ >
1448
+ </li>
1449
+ <li>
1450
+ <a
1451
+ href="https://www.cnblogs.com/guangzan/p/14723413.html"
1452
+ >6.深色模式适配和主题切换</a
1453
+ >
1454
+ </li>
1455
+ <li>
1456
+ <a
1457
+ href="https://www.cnblogs.com/guangzan/p/14225762.html"
1458
+ >7.谈谈 Vue 模板和 JSX</a
1459
+ >
1460
+ </li>
1461
+ <li>
1462
+ <a
1463
+ href="https://www.cnblogs.com/guangzan/p/14166007.html"
1464
+ >8.博客园代码折叠</a
1465
+ >
1466
+ </li>
1467
+ <li>
1468
+ <a
1469
+ href="https://www.cnblogs.com/guangzan/p/14135368.html"
1470
+ >9.win10关闭锁屏,直接进入登录界面</a
1471
+ >
1472
+ </li>
1473
+ <li>
1474
+ <a
1475
+ href="https://www.cnblogs.com/guangzan/p/14057876.html"
1476
+ >10.vscode 中 eslint prettier 和 eslint -loader
1477
+ 配置关系</a
1478
+ >
1479
+ </li>
1480
+ </ul>
1481
+ </div>
1482
+ </div>
1483
+ <!-- 我的标签 -->
1484
+ <div id="sidebar_toptags" class="sidebar-block">
1485
+ <div class="catListTag">
1486
+ <h3 class="catListTitle">我的标签</h3>
1487
+ <ul>
1488
+ <li>
1489
+ <a
1490
+ href="https://www.cnblogs.com/guangzan/tag/javascript/"
1491
+ >javascript<span class="tag-count">(14)</span></a
1492
+ >
1493
+ </li>
1494
+ <li>
1495
+ <a href="https://www.cnblogs.com/guangzan/tag/Vue/"
1496
+ >Vue<span class="tag-count">(10)</span></a
1497
+ >
1498
+ </li>
1499
+ <li>
1500
+ <a href="https://www.cnblogs.com/guangzan/tag/webpack4/"
1501
+ >webpack4<span class="tag-count">(9)</span></a
1502
+ >
1503
+ </li>
1504
+ <li>
1505
+ <a href="https://www.cnblogs.com/guangzan/tag/css/"
1506
+ >css<span class="tag-count">(9)</span></a
1507
+ >
1508
+ </li>
1509
+ <li>
1510
+ <a href="https://www.cnblogs.com/guangzan/tag/vue3/"
1511
+ >vue3<span class="tag-count">(8)</span></a
1512
+ >
1513
+ </li>
1514
+ <li>
1515
+ <a href="https://www.cnblogs.com/guangzan/tag/">更多</a>
1516
+ </li>
1517
+ </ul>
1518
+ </div>
1519
+ </div>
1520
+ <!-- 积分与排名 -->
1521
+ <div id="sidebar_scorerank" class="sidebar-block">
1522
+ <div class="catListBlogRank">
1523
+ <h3 class="catListTitle">积分与排名</h3>
1524
+ <ul>
1525
+ <li class="liScore">积分 - 131080</li>
1526
+ <li class="liRank">排名 - 7140</li>
1527
+ </ul>
1528
+ </div>
1529
+ </div>
1530
+ <!-- 随笔分类、随笔档案、文章分类、新闻分类、相册、链接 -->
1531
+ <div id="sidebar_categories">
1532
+ <div
1533
+ id="sidebar_postcategory"
1534
+ class="catListPostCategory sidebar-block"
1535
+ >
1536
+ <h3 class="catListTitle">随笔分类</h3>
1537
+
1538
+ <ul>
1539
+ <li
1540
+ data-category-list-item-visible="true"
1541
+ style="display: block"
1542
+ >
1543
+ <a
1544
+ href="https://www.cnblogs.com/guangzan/category/1607570.html"
1545
+ rel=""
1546
+ target=""
1547
+ >
1548
+ Cnblog(12)
1549
+ </a>
1550
+ </li>
1551
+ <li
1552
+ data-category-list-item-visible="true"
1553
+ style="display: block"
1554
+ >
1555
+ <a
1556
+ href="https://www.cnblogs.com/guangzan/category/1690966.html"
1557
+ rel=""
1558
+ target=""
1559
+ >
1560
+ Code Optimization(3)
1561
+ </a>
1562
+ </li>
1563
+ <li
1564
+ data-category-list-item-visible="true"
1565
+ style="display: block"
1566
+ >
1567
+ <a
1568
+ href="https://www.cnblogs.com/guangzan/category/1386378.html"
1569
+ rel=""
1570
+ target=""
1571
+ >
1572
+ CSS(16)
1573
+ </a>
1574
+ </li>
1575
+ <li
1576
+ data-category-list-item-visible="true"
1577
+ style="display: block"
1578
+ >
1579
+ <a
1580
+ href="https://www.cnblogs.com/guangzan/category/1640195.html"
1581
+ rel=""
1582
+ target=""
1583
+ >
1584
+ Data Visualization(4)
1585
+ </a>
1586
+ </li>
1587
+ <li
1588
+ data-category-list-item-visible="true"
1589
+ style="display: block"
1590
+ >
1591
+ <a
1592
+ href="https://www.cnblogs.com/guangzan/category/1864688.html"
1593
+ rel=""
1594
+ target=""
1595
+ >
1596
+ Design(1)
1597
+ </a>
1598
+ </li>
1599
+ <li
1600
+ data-category-list-item-visible="true"
1601
+ style="display: block"
1602
+ >
1603
+ <a
1604
+ href="https://www.cnblogs.com/guangzan/category/1639548.html"
1605
+ rel=""
1606
+ target=""
1607
+ >
1608
+ Error(8)
1609
+ </a>
1610
+ </li>
1611
+ <li
1612
+ data-category-list-item-visible="true"
1613
+ style="display: block"
1614
+ >
1615
+ <a
1616
+ href="https://www.cnblogs.com/guangzan/category/1507898.html"
1617
+ rel=""
1618
+ target=""
1619
+ >
1620
+ Git(9)
1621
+ </a>
1622
+ </li>
1623
+ <li
1624
+ data-category-list-item-visible="true"
1625
+ style="display: block"
1626
+ >
1627
+ <a
1628
+ href="https://www.cnblogs.com/guangzan/category/1386376.html"
1629
+ rel=""
1630
+ target=""
1631
+ >
1632
+ HTML(1)
1633
+ </a>
1634
+ </li>
1635
+ <li
1636
+ data-category-list-item-visible="true"
1637
+ style="display: block"
1638
+ >
1639
+ <a
1640
+ href="https://www.cnblogs.com/guangzan/category/1386379.html"
1641
+ rel=""
1642
+ target=""
1643
+ >
1644
+ JS/TS(30)
1645
+ </a>
1646
+ </li>
1647
+ <li
1648
+ data-category-list-item-visible="true"
1649
+ style="display: block"
1650
+ >
1651
+ <a
1652
+ href="https://www.cnblogs.com/guangzan/category/1668615.html"
1653
+ rel=""
1654
+ target=""
1655
+ >
1656
+ Module Bundler(8)
1657
+ </a>
1658
+ </li>
1659
+ <li
1660
+ data-category-list-item-visible="true"
1661
+ style="display: block"
1662
+ >
1663
+ <a
1664
+ href="https://www.cnblogs.com/guangzan/category/1965813.html"
1665
+ rel=""
1666
+ target=""
1667
+ >
1668
+ NodeJS(2)
1669
+ </a>
1670
+ </li>
1671
+ <li
1672
+ data-category-list-item-visible="true"
1673
+ style="display: block"
1674
+ >
1675
+ <a
1676
+ href="https://www.cnblogs.com/guangzan/category/1635528.html"
1677
+ rel=""
1678
+ target=""
1679
+ >
1680
+ React(4)
1681
+ </a>
1682
+ </li>
1683
+ <li
1684
+ data-category-list-item-visible="true"
1685
+ style="display: block"
1686
+ >
1687
+ <a
1688
+ href="https://www.cnblogs.com/guangzan/category/1799265.html"
1689
+ rel=""
1690
+ target=""
1691
+ >
1692
+ Source Analysis(4)
1693
+ </a>
1694
+ </li>
1695
+ <li
1696
+ data-category-list-item-visible="true"
1697
+ style="display: block"
1698
+ >
1699
+ <a
1700
+ href="https://www.cnblogs.com/guangzan/category/1512296.html"
1701
+ rel=""
1702
+ target=""
1703
+ >
1704
+ Tools(8)
1705
+ </a>
1706
+ </li>
1707
+ <li
1708
+ data-category-list-item-visible="true"
1709
+ style="display: block"
1710
+ >
1711
+ <a
1712
+ href="https://www.cnblogs.com/guangzan/category/1386380.html"
1713
+ rel=""
1714
+ target=""
1715
+ >
1716
+ Vue(23)
1717
+ </a>
1718
+ </li>
1719
+ <li
1720
+ data-category-list-item-visible="true"
1721
+ style="display: block"
1722
+ >
1723
+ <a
1724
+ href="https://www.cnblogs.com/guangzan/category/1598137.html"
1725
+ rel=""
1726
+ target=""
1727
+ >
1728
+ Windows(15)
1729
+ </a>
1730
+ </li>
1731
+ </ul>
1732
+ </div>
1733
+ <div
1734
+ id="sidebar_postarchive"
1735
+ class="catListPostArchive sidebar-block"
1736
+ >
1737
+ <h3 class="catListTitle">随笔档案</h3>
1738
+
1739
+ <ul>
1740
+ <li
1741
+ data-category-list-item-visible="true"
1742
+ style="display: block"
1743
+ >
1744
+ <a
1745
+ href="https://www.cnblogs.com/guangzan/archive/2021/05.html"
1746
+ rel=""
1747
+ target=""
1748
+ >
1749
+ 2021年5月(6)
1750
+ </a>
1751
+ </li>
1752
+ <li
1753
+ data-category-list-item-visible="true"
1754
+ style="display: block"
1755
+ >
1756
+ <a
1757
+ href="https://www.cnblogs.com/guangzan/archive/2021/04.html"
1758
+ rel=""
1759
+ target=""
1760
+ >
1761
+ 2021年4月(5)
1762
+ </a>
1763
+ </li>
1764
+ <li
1765
+ data-category-list-item-visible="true"
1766
+ style="display: block"
1767
+ >
1768
+ <a
1769
+ href="https://www.cnblogs.com/guangzan/archive/2021/03.html"
1770
+ rel=""
1771
+ target=""
1772
+ >
1773
+ 2021年3月(1)
1774
+ </a>
1775
+ </li>
1776
+ <li
1777
+ data-category-list-item-visible="true"
1778
+ style="display: block"
1779
+ >
1780
+ <a
1781
+ href="https://www.cnblogs.com/guangzan/archive/2021/01.html"
1782
+ rel=""
1783
+ target=""
1784
+ >
1785
+ 2021年1月(2)
1786
+ </a>
1787
+ </li>
1788
+ <li
1789
+ data-category-list-item-visible="true"
1790
+ style="display: block"
1791
+ >
1792
+ <a
1793
+ href="https://www.cnblogs.com/guangzan/archive/2020/12.html"
1794
+ rel=""
1795
+ target=""
1796
+ >
1797
+ 2020年12月(2)
1798
+ </a>
1799
+ </li>
1800
+ <li
1801
+ data-category-list-item-visible="true"
1802
+ style="display: block"
1803
+ >
1804
+ <a
1805
+ href="https://www.cnblogs.com/guangzan/archive/2020/11.html"
1806
+ rel=""
1807
+ target=""
1808
+ >
1809
+ 2020年11月(6)
1810
+ </a>
1811
+ </li>
1812
+ <li
1813
+ data-category-list-item-visible="true"
1814
+ style="display: block"
1815
+ >
1816
+ <a
1817
+ href="https://www.cnblogs.com/guangzan/archive/2020/10.html"
1818
+ rel=""
1819
+ target=""
1820
+ >
1821
+ 2020年10月(5)
1822
+ </a>
1823
+ </li>
1824
+ <li
1825
+ data-category-list-item-visible="true"
1826
+ style="display: block"
1827
+ >
1828
+ <a
1829
+ href="https://www.cnblogs.com/guangzan/archive/2020/08.html"
1830
+ rel=""
1831
+ target=""
1832
+ >
1833
+ 2020年8月(3)
1834
+ </a>
1835
+ </li>
1836
+ <li
1837
+ data-category-list-item-visible="true"
1838
+ style="display: block"
1839
+ >
1840
+ <a
1841
+ href="https://www.cnblogs.com/guangzan/archive/2020/07.html"
1842
+ rel=""
1843
+ target=""
1844
+ >
1845
+ 2020年7月(11)
1846
+ </a>
1847
+ </li>
1848
+ <li
1849
+ data-category-list-item-visible="true"
1850
+ style="display: block"
1851
+ >
1852
+ <a
1853
+ href="https://www.cnblogs.com/guangzan/archive/2020/06.html"
1854
+ rel=""
1855
+ target=""
1856
+ >
1857
+ 2020年6月(2)
1858
+ </a>
1859
+ </li>
1860
+ <li
1861
+ data-category-list-item-visible="true"
1862
+ style="display: block"
1863
+ >
1864
+ <a
1865
+ href="https://www.cnblogs.com/guangzan/archive/2020/05.html"
1866
+ rel=""
1867
+ target=""
1868
+ >
1869
+ 2020年5月(9)
1870
+ </a>
1871
+ </li>
1872
+ <li
1873
+ data-category-list-item-visible="true"
1874
+ style="display: block"
1875
+ >
1876
+ <a
1877
+ href="https://www.cnblogs.com/guangzan/archive/2020/04.html"
1878
+ rel=""
1879
+ target=""
1880
+ >
1881
+ 2020年4月(7)
1882
+ </a>
1883
+ </li>
1884
+ <li
1885
+ data-category-list-item-visible="true"
1886
+ style="display: block"
1887
+ >
1888
+ <a
1889
+ href="https://www.cnblogs.com/guangzan/archive/2020/03.html"
1890
+ rel=""
1891
+ target=""
1892
+ >
1893
+ 2020年3月(19)
1894
+ </a>
1895
+ </li>
1896
+ <li
1897
+ data-category-list-item-visible="true"
1898
+ style="display: block"
1899
+ >
1900
+ <a
1901
+ href="https://www.cnblogs.com/guangzan/archive/2020/02.html"
1902
+ rel=""
1903
+ target=""
1904
+ >
1905
+ 2020年2月(6)
1906
+ </a>
1907
+ </li>
1908
+ <li
1909
+ data-category-list-item-visible="true"
1910
+ style="display: block"
1911
+ >
1912
+ <a
1913
+ href="https://www.cnblogs.com/guangzan/archive/2020/01.html"
1914
+ rel=""
1915
+ target=""
1916
+ >
1917
+ 2020年1月(7)
1918
+ </a>
1919
+ </li>
1920
+ <li
1921
+ data-category-list-item-visible="true"
1922
+ style="display: block"
1923
+ >
1924
+ <a
1925
+ href="https://www.cnblogs.com/guangzan/archive/2019/12.html"
1926
+ rel=""
1927
+ target=""
1928
+ >
1929
+ 2019年12月(1)
1930
+ </a>
1931
+ </li>
1932
+ <li
1933
+ data-category-list-item-visible="true"
1934
+ style="display: block"
1935
+ >
1936
+ <a
1937
+ href="https://www.cnblogs.com/guangzan/archive/2019/11.html"
1938
+ rel=""
1939
+ target=""
1940
+ >
1941
+ 2019年11月(11)
1942
+ </a>
1943
+ </li>
1944
+ <li
1945
+ data-category-list-item-visible="true"
1946
+ style="display: block"
1947
+ >
1948
+ <a
1949
+ href="https://www.cnblogs.com/guangzan/archive/2019/10.html"
1950
+ rel=""
1951
+ target=""
1952
+ >
1953
+ 2019年10月(1)
1954
+ </a>
1955
+ </li>
1956
+ <li
1957
+ data-category-list-item-visible="true"
1958
+ style="display: block"
1959
+ >
1960
+ <a
1961
+ href="https://www.cnblogs.com/guangzan/archive/2019/07.html"
1962
+ rel=""
1963
+ target=""
1964
+ >
1965
+ 2019年7月(35)
1966
+ </a>
1967
+ </li>
1968
+ <li
1969
+ data-category-list-item-visible="true"
1970
+ style="display: block"
1971
+ >
1972
+ <a
1973
+ href="https://www.cnblogs.com/guangzan/archive/2019/03.html"
1974
+ rel=""
1975
+ target=""
1976
+ >
1977
+ 2019年3月(2)
1978
+ </a>
1979
+ </li>
1980
+ <li
1981
+ data-category-list-item-visible="false"
1982
+ style="display: none"
1983
+ >
1984
+ <a
1985
+ href="https://www.cnblogs.com/guangzan/archive/2019/02.html"
1986
+ rel=""
1987
+ target=""
1988
+ >
1989
+ 2019年2月(1)
1990
+ </a>
1991
+ </li>
1992
+ <li
1993
+ data-category-list-item-visible="false"
1994
+ style="display: none"
1995
+ >
1996
+ <a
1997
+ href="https://www.cnblogs.com/guangzan/archive/2019/01.html"
1998
+ rel=""
1999
+ target=""
2000
+ >
2001
+ 2019年1月(4)
2002
+ </a>
2003
+ </li>
2004
+ <li>
2005
+ <a
2006
+ href="javascript:void(0)"
2007
+ onclick="sideColumnManager.loadMore(this)"
2008
+ >更多</a
2009
+ >
2010
+ </li>
2011
+ </ul>
2012
+ </div>
2013
+ <div
2014
+ id="sidebar_imagecategory"
2015
+ class="catListImageCategory sidebar-block"
2016
+ >
2017
+ <h3 class="catListTitle">相册</h3>
2018
+
2019
+ <ul>
2020
+ <li
2021
+ data-category-list-item-visible="true"
2022
+ style="display: block"
2023
+ >
2024
+ <a
2025
+ href="https://www.cnblogs.com/guangzan/gallery/1822578.html"
2026
+ rel="nofollow noopener noreferrer"
2027
+ target=""
2028
+ >
2029
+ 测试1(1)
2030
+ </a>
2031
+ </li>
2032
+ <li
2033
+ data-category-list-item-visible="true"
2034
+ style="display: block"
2035
+ >
2036
+ <a
2037
+ href="https://www.cnblogs.com/guangzan/gallery/1822579.html"
2038
+ rel="nofollow noopener noreferrer"
2039
+ target=""
2040
+ >
2041
+ 测试2(1)
2042
+ </a>
2043
+ </li>
2044
+ <li
2045
+ data-category-list-item-visible="true"
2046
+ style="display: block"
2047
+ >
2048
+ <a
2049
+ href="https://www.cnblogs.com/guangzan/gallery/1822580.html"
2050
+ rel="nofollow noopener noreferrer"
2051
+ target=""
2052
+ >
2053
+ 测试3(6)
2054
+ </a>
2055
+ </li>
2056
+ </ul>
2057
+ </div>
2058
+ <div id="sidebar_links1978167" class="catList sidebar-block">
2059
+ <h3 class="catListTitle">友情链接</h3>
2060
+
2061
+ <ul>
2062
+ <li
2063
+ data-category-list-item-visible="true"
2064
+ style="display: block"
2065
+ >
2066
+ <a
2067
+ href="www.cnblog.com"
2068
+ rel="nofollow noopener noreferrer"
2069
+ target=""
2070
+ >
2071
+ 测试测试测试
2072
+ </a>
2073
+ </li>
2074
+ <li
2075
+ data-category-list-item-visible="true"
2076
+ style="display: block"
2077
+ >
2078
+ <a
2079
+ href="www.baidu.com"
2080
+ rel="nofollow noopener noreferrer"
2081
+ target=""
2082
+ >
2083
+ 测试测试测试
2084
+ </a>
2085
+ </li>
2086
+ <li
2087
+ data-category-list-item-visible="true"
2088
+ style="display: block"
2089
+ >
2090
+ <a
2091
+ href="www.cnblog.com"
2092
+ rel="nofollow noopener noreferrer"
2093
+ target=""
2094
+ >
2095
+ 测试测试测试
2096
+ </a>
2097
+ </li>
2098
+ </ul>
2099
+ </div>
2100
+ </div>
2101
+ <!-- 最新评论 -->
2102
+ <div id="sidebar_recentcomments" class="sidebar-block">
2103
+ <div class="catListComment">
2104
+ <h3 class="catListTitle">最新评论</h3>
2105
+
2106
+ <div class="RecentCommentBlock">
2107
+ <ul>
2108
+ <li class="recent_comment_title">
2109
+ <a
2110
+ href="https://www.cnblogs.com/guangzan/p/12892420.html"
2111
+ >1. Re:Lorem, ipsum dolor sit amet consectetur
2112
+ adipisicing elit</a
2113
+ >
2114
+ </li>
2115
+ <li class="recent_comment_body">
2116
+ @kin02 请使用 Markdown 编辑器,注意 Markdown
2117
+ 语法;可能与你自己的博客代码冲突;...
2118
+ </li>
2119
+ <li class="recent_comment_author">--guangzan</li>
2120
+ <li class="recent_comment_title">
2121
+ <a
2122
+ href="https://www.cnblogs.com/guangzan/p/12892420.html"
2123
+ >2. Re:Lorem, ipsum dolor sit amet consectetur
2124
+ adipisicing elit</a
2125
+ >
2126
+ </li>
2127
+ <li class="recent_comment_body">
2128
+ <p>白天模式正常😓</p>
2129
+ </li>
2130
+ <li class="recent_comment_author">--kin02</li>
2131
+ </ul>
2132
+ </div>
2133
+ </div>
2134
+ </div>
2135
+ <!-- 阅读排行榜 -->
2136
+ <div id="sidebar_topviewedposts" class="sidebar-block">
2137
+ <div class="catListView">
2138
+ <h3 class="catListTitle">阅读排行榜</h3>
2139
+ <div id="TopViewPostsBlock">
2140
+ <ul style="word-break: break-all">
2141
+ <li>
2142
+ <a
2143
+ href="https://www.cnblogs.com/guangzan/p/11268900.html"
2144
+ >
2145
+ 1. vue实现简单的点击切换颜色(7316)
2146
+ </a>
2147
+ </li>
2148
+ <li>
2149
+ <a
2150
+ href="https://www.cnblogs.com/guangzan/p/12466467.html"
2151
+ >
2152
+ 2. Parsing error: 'import' and 'export' may only
2153
+ appear at the top level(5297)
2154
+ </a>
2155
+ </li>
2156
+ <li>
2157
+ <a
2158
+ href="https://www.cnblogs.com/guangzan/p/12244579.html"
2159
+ >
2160
+ 3. vant list 不断连续请求接口神奇原因(4501)
2161
+ </a>
2162
+ </li>
2163
+ <li>
2164
+ <a
2165
+ href="https://www.cnblogs.com/guangzan/p/11268930.html"
2166
+ >
2167
+ 4. Vue Prop属性(父to子)(3774)
2168
+ </a>
2169
+ </li>
2170
+ <li>
2171
+ <a
2172
+ href="https://www.cnblogs.com/guangzan/p/10291885.html"
2173
+ >
2174
+ 5. CSS3-flex弹性布局之flex属性(3753)
2175
+ </a>
2176
+ </li>
2177
+ </ul>
2178
+ </div>
2179
+ </div>
2180
+ </div>
2181
+ <!-- 评论排行榜 -->
2182
+ <div id="sidebar_topcommentedposts" class="sidebar-block">
2183
+ <div class="catListFeedback">
2184
+ <h3 class="catListTitle">评论排行榜</h3>
2185
+ <div id="TopFeedbackPostsBlock">
2186
+ <ul style="word-break: break-all">
2187
+ <li>
2188
+ <a
2189
+ href="https://www.cnblogs.com/guangzan/p/13020977.html"
2190
+ >
2191
+ 1. Lorem, ipsum dolor sit amet consectetur
2192
+ adipisicing elit(66)
2193
+ </a>
2194
+ </li>
2195
+ <li>
2196
+ <a
2197
+ href="https://www.cnblogs.com/guangzan/p/12892420.html"
2198
+ >
2199
+ 2. Lorem, ipsum dolor sit amet consectetur
2200
+ adipisicing elit(32)
2201
+ </a>
2202
+ </li>
2203
+ <li>
2204
+ <a
2205
+ href="https://www.cnblogs.com/guangzan/p/12256583.html"
2206
+ >
2207
+ 3. 分享几套不一样的博客园皮肤 ?(32)
2208
+ </a>
2209
+ </li>
2210
+ <li>
2211
+ <a
2212
+ href="https://www.cnblogs.com/guangzan/p/12515742.html"
2213
+ >
2214
+ 4. 从这个博客皮肤迈入前端性能优化一小步(30)
2215
+ </a>
2216
+ </li>
2217
+ <li>
2218
+ <a
2219
+ href="https://www.cnblogs.com/guangzan/p/12886111.html"
2220
+ >
2221
+ 5. 2020年了,别再重复学习原型了(14)
2222
+ </a>
2223
+ </li>
2224
+ </ul>
2225
+ </div>
2226
+ </div>
2227
+ </div>
2228
+ <!-- 推荐排行榜 -->
2229
+ <div id="sidebar_topdiggedposts" class="sidebar-block">
2230
+ <div id="topdigg_posts_wrap">
2231
+ <div class="catListView">
2232
+ <h3 class="catListTitle">推荐排行榜</h3>
2233
+ <div id="TopDiggPostsBlock">
2234
+ <ul style="word-break: break-all">
2235
+ <li>
2236
+ <a
2237
+ href="https://www.cnblogs.com/guangzan/p/12892420.html"
2238
+ >
2239
+ 1. Lorem, ipsum dolor sit amet consectetur
2240
+ adipisicing elit(45)
2241
+ </a>
2242
+ </li>
2243
+ <li>
2244
+ <a
2245
+ href="https://www.cnblogs.com/guangzan/p/13020977.html"
2246
+ >
2247
+ 2. Lorem, ipsum dolor sit amet consectetur
2248
+ adipisicing elit(31)
2249
+ </a>
2250
+ </li>
2251
+ <li>
2252
+ <a
2253
+ href="https://www.cnblogs.com/guangzan/p/12256583.html"
2254
+ >
2255
+ 3. Lorem, ipsum dolor sit amet consectetur
2256
+ adipisicing elit(26)
2257
+ </a>
2258
+ </li>
2259
+ <li>
2260
+ <a
2261
+ href="https://www.cnblogs.com/guangzan/p/13524990.html"
2262
+ >
2263
+ 4. Lorem, ipsum dolor sit amet consectetur
2264
+ adipisicing elit(15)
2265
+ </a>
2266
+ </li>
2267
+ <li>
2268
+ <a
2269
+ href="https://www.cnblogs.com/guangzan/p/12515742.html"
2270
+ >
2271
+ 5. Lorem, ipsum dolor sit amet consectetur
2272
+ adipisicing elit(15)
2273
+ </a>
2274
+ </li>
2275
+ </ul>
2276
+ </div>
2277
+ </div>
2278
+ </div>
2279
+ </div>
2280
+ </div>
2281
+ </div>
2282
+ </div>
2283
+ </div>
2284
+ </div>
2285
+ <div id="footer">
2286
+ Copyright © 2020 tona-test
2287
+ <br />
2288
+ <span id="poweredby">Powered by .NET Core on Kubernetes</span>
2289
+ </div>
2290
+ </div>
2291
+ <script src="../js/jquery.min.js"></script>
2292
+ <script src="../js/highlight.min.js"></script>
2293
+ <script src="../js/highlightjs-line-numbers.min.js"></script>
2294
+ <script src="../js/mockAPI.js"></script>
2295
+ <script type="module" src="../src/main.js"></script>
2296
+ <script>
2297
+ document.querySelectorAll('a').forEach((a) => {
2298
+ a.addEventListener('click', (e) => {
2299
+ e.preventDefault()
2300
+ })
2301
+ })
2302
+ </script>
2303
+ </body>
2304
+ </html>