-
Notifications
You must be signed in to change notification settings - Fork 0
/
houseprice.html
1724 lines (1135 loc) · 57.2 KB
/
houseprice.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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--
_ooOoo_
o8888888o
88" . "88
(| -_- |)
O\ = /O
____/`---'\____
.' \\| |// `.
/ \\||| : |||// \
/ _||||| -:- |||||- \
| | \\\ - /// | |
| \_| ''\---/'' | |
\ .-\__ `-` ___/-. /
___`. .' /--.--\ `. . __
."" '< `.___\_<|>_/___.' >'"".
| | : `- \`.;`\ _ /`;.`/ - ` : | |
\ \ `-. \_ __\ /__ _/ .-` / /
======`-.____`-.___\_____/___.-`____.-'======
`=---='
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
佛祖保佑 永无BUG
-->
<html class="theme-next mist use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<link href="//mydearest.cn" rel="dns-prefetch">
<link href="//www.mydearest.cn" rel="dns-prefetch">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="theme-color" content="#222">
<meta name="description" content="陈宇的博客" />
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic|Roboto Slab:300,300italic,400,400italic,700,700italic|Lobster Two:300,300italic,400,400italic,700,700italic|PT Mono:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<meta name="keywords" content="吐槽,房价," />
<link rel="alternate" href="/rss2.xml" title="cosyer's Blog" type="application/atom+xml" />
<link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico" />
<meta name="description" content="炒房兴邦,实业误国">
<meta property="og:type" content="article">
<meta property="og:title" content="侠之大者,为国接盘">
<meta property="og:url" content="http://mydearest.cn/houseprice.html">
<meta property="og:site_name" content="cosyer's Blog">
<meta property="og:description" content="炒房兴邦,实业误国">
<meta property="article:published_time" content="2018-06-16T09:54:50.000Z">
<meta property="article:modified_time" content="2018-12-15T05:37:34.158Z">
<meta property="article:author" content="陈宇(cosyer)">
<meta property="article:tag" content="吐槽">
<meta property="article:tag" content="房价">
<meta name="twitter:card" content="summary">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Mist',
sidebar: {"position":"left","display":"always","offset":12,"offset_float":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: true,
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://mydearest.cn/houseprice.html"/>
<title>侠之大者,为国接盘 | cosyer's Blog</title>
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?653a4be35cb6c7b26817038a17c3f0d6";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<link href="https://mydearest.cn/css/all-9097fb9016.css" rel="stylesheet" type="text/css">
<style>
// scrollbar滚动条样式优化
::-webkit-scrollbar-corner {
background-color: transparent;
}
::-webkit-scrollbar-button {
width: 0;
height: 0;
display: none;
}
::-webkit-scrollbar-thumb {
width: 7px;
background-color: #b4babf;
border-radius: 7px;
}
::-webkit-scrollbar {
width: 7px;
height: 7px;
}
::-webkit-scrollbar-track {
width: 15px;
}
::-webkit-scrollbar:hover {
background-color: transparent;
}
* {
cursor: url("http://cdn.mydearest.cn/blog/images/miku1.png"),auto!important
}
:active {
cursor: url("http://cdn.mydearest.cn/blog/images/miku2.png"),auto!important
}
a:hover {
cursor: url("http://cdn.mydearest.cn/blog/images/miku2.png"),auto!important
}
</style>
<meta name="generator" content="Hexo 4.2.1"></head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div id="loader">
<div></div>
</div>
<div class="container sidebar-position-left page-post-detail ">
<div class="headband"></div>
<a href="https://github.com/cosyer" target="_blank" rel="noopener" class="github-corner" aria-label="View source on Github"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; left: 0; transform: scale(-1, 1);" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style></a>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">cosyer's Blog</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<h1 class="site-subtitle" itemprop="description">Blog</h1>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" class="faa-parent animated-hover" rel="section">
<i class="menu-item-icon fa fa-fw fa-home faa-wrench"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-links">
<a href="/links/" class="faa-parent animated-hover" rel="section">
<i class="menu-item-icon fa fa-fw fa-link faa-shake"></i> <br />
友链
</a>
</li>
<li class="menu-item menu-item-guestbook">
<a href="/guestbook/" class="faa-parent animated-hover" rel="section">
<i class="menu-item-icon fa fa-fw fa-comment-o faa-tada"></i> <br />
留言板
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" class="faa-parent animated-hover" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive faa-float"></i> <br />
归档
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" class="faa-parent animated-hover" rel="section">
<i class="menu-item-icon fa fa-fw fa-user faa-horizontal"></i> <br />
关于
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="popup-trigger faa-parent animated-hover">
<i class="menu-item-icon fa fa-search faa-burst fa-fw"></i> <br />
搜索
</a>
</li>
</ul>
<div class="site-search">
<div class="popup search-popup local-search-popup">
<div class="local-search-header clearfix">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<span class="popup-btn-close">
<i class="fa fa-times-circle"></i>
</span>
<div class="local-search-input-wrapper">
<input autocomplete="off"
placeholder="搜索..." spellcheck="false"
type="text" id="local-search-input">
</div>
</div>
<div id="local-search-result"></div>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-date" data-datetime="2018-12-15T13:37:34+08:00">
<div class="post-time-text">12月</div>
<div class="post-time-count">15</div>
<div class="text-desc">
<div class="date-text">更新于</div>
<div class="post-tiem">12月15</div>
<div class="post-year">2018</div>
</div>
</div>
<div class="post-badge">
<span class="post-category" >
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E6%9D%82%E8%B0%88/" itemprop="url" rel="index">
<span itemprop="name">杂谈</span>
</a>
</span>
</span>
</div>
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://mydearest.cn/houseprice.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="陈宇(cosyer)">
<meta itemprop="description" content="不去做的话永远也做不到。">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="cosyer's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">侠之大者,为国接盘</h2>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="发表于" itemprop="dateCreated datePublished" datetime="2018-06-16T17:54:50+08:00">
2018-06-16
</time>
</span>
<span id="/houseprice.html" class="leancloud_visitors" data-flag-title="侠之大者,为国接盘">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-eye"></i>
</span>
<span class="post-meta-item-text">热度 </span>
<span class="leancloud-visitors-count"></span> ℃
</span>
<div class="post-wordcount">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-pencil-square-o"></i>
</span>
<span class="post-meta-item-text">字数统计:</span>
<span title="字数统计:">
2,022 (字)
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长:</span>
<span title="阅读时长:">
7 (分钟)
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote class="blockquote-center"><p>炒房兴邦,实业误国</p>
</blockquote>
<hr>
<a id="more"></a>
<p>近年来,房价成为了生活中重要的谈资和话题,几乎所有的聊天场合都会聊到房子,什么谁谁谁有几套房,不用工作每月靠房租过活。坐公交车上都是听到一些阿姨手里几套房,在手里在捂一会,转手卖给有刚需的年轻人,后悔没多买几套之类的话。</p>
<p>房价的上涨,刚需不敢不买,等下去看不到希望,掏空了一家父母的过去和年轻人的未来,面对zf的货币超发引起的通货膨胀,却又无可奈何。房价再涨个3、4倍,分分钟GDP超过美国啊。现在基本的理财方式已经赶不上通货膨胀的速度了,眼看着手里的钱越来越不值钱,人人自危,都只能通过购房来保值。被zf逼的哪怕背上几十年的贷款也要坐上这趟车,给zf当几十年的免费劳动力来消化这巨大的泡沫。</p>
<p>这个浮躁社会的高房价,让我们这些刚毕业工作几年的年轻人,要我们的青春和汗水给你们买单。现在的年轻人,怎么可能刚毕业就能积攒到买房的首付,被逼的去‘啃老’,掏空全家人的钱包,成为房奴。2017年前yz的房价大概7000/m2,恒大在年初当了一波地王2w/m2买了邗江中专那边的地后,各个楼盘开始疯长,在年底11月份购入1w/m2后,如今短短半年已经涨到了1.3w/m2。试想以100m2为例如果不早点买,就得平白无故多交20w的韭菜钱。房价降是不可能降的,这个牵扯到太多人和行业的利益,一旦崩盘了,其他行业也会受到影响,经济陷入低迷,zf不断地增发货币来救市。一线城市政府来主导市场看上去房价跌了,这也只是杯水车薪,高额的房价不断地在驱逐这所谓的低端人口,也是啊,毕竟要实现小康社会啊,让先富带动后富,实现共同小康,还是直接消灭低端人口容易些。房价的压力让现在的中国人充满着戾气、浮躁。上了车的人在嘲讽着没上车的人,一旦买了房,两者就成了对立面,高房价改变了人们的价值观。如今人们对于成功的标准定义有几辆车,几套房。现在各个城市推行的所谓吸引人才政策,不就是为了让人来接盘去库存么。</p>
<p>房价带来了价值观的革命,中下层把买房当成了人生目标,中产把买房当成了支付手段,政府把卖地当作经济支柱,将企业债务转化成了居民债务。房价捆绑了经济、政治、户籍、教育、爱情、事业甚至社会地位,集万千宠爱于一身。随着房价越来越高,社会阶层出现固化趋势,多少年轻人的梦想倍房价无情碾压,多少家庭为了买房背上沉重的债务,多少爱情因为房价变得支离破碎,还有的夫妻为了多买套房选择离婚。而在房价面前我们崇尚的个人奋斗,不值一文。年轻人开始选择佛系,不再憧憬爱情,坚持和努力并没有什么卵用,开始相信投机的价值。金钱至上主义横行,勤劳致富成为了笑话,炒房的人成为了羡慕对象,所谓的梦想是多么的幼稚可笑。这个xx的时代,只要你买不起房救市没出息的男人。毕竟男生在婚姻当中是向下兼容,而女生是向上兼容的。现在的知乎上现在的男生为什么不追求女生、为什么现在的女孩子活得都很潇洒,男孩子确郁郁寡欢这类的问题比比皆是。毕竟女性才是消费的主力,那些商家们为了自己的利益,各种推出什么女神节等等之类的活动和营销号无底线地讨好女性发软文毒鸡汤,恶心至极。什么公主、女王、仙女,拜拜了您!大家又不是笨蛋,看透了资本主义生产方式,不想再沦为奴隶了,工作只会使自己越来越贫穷。劳动法就是个笑话,各种被所谓的企业文化所绑架,压榨干你的劳动力。员工和公司的关系很简单,你付给我钱,我帮你工作罢了,我们并不是一家人。永远不要试探人性的底线,没有完美的人。抱歉,中国特色社会主义的大饼我吃不下了。</p>
<p>从古至今,中国还是没有发生什么大的变化,权利还是掌握在少部分人手里,层层剥削的金字塔结构,什么人民当家作主,到头来还不是被代表了。所谓的法律还不是为了维护阶级统治的利益。我国是领导人选举能全票通过的国家,神奇不神奇呵呵。一个个大腹便便的领导们,嘴上说着服务人民,背地里作者贪污腐败的行当。这年头都希望考公务员,公务员是什么,为人民服务。一个个都争着抢着去当人民的公仆,还不是为了铁饭碗、利益。在小城市里,都是靠关系,所谓的人情社会。有些人只是想听到他们想听到的话罢了,成年人的价值观一旦成型一般是很难改变的。国家开放二胎政策还不是为了拉动内需,劳动力不足,老龄化严重。现在地区间发展不平衡,中国就只有这北上广深等一线城市罢了,很多人背井离乡去这些大城市打工,这些人是去赚钱而不是来消费的,当地的zf是很讨厌的。春运很值得骄傲吗,你以为人人都愿意远离自己的家乡,在陌生的城市中打拼吗?这些繁华都与自己无关。很久之前被教导不乱扔垃圾,可现实是如果大家都不乱扔垃圾了,那些环卫工人们是真的会失业的,资本家会让人白白领一份工资么?答案当然是不会的,他们宁可把过剩的商品都愿意倒掉销毁,也不愿意救济贫民,扰乱消费市场。中国有着最大的局域网,保护本国的互联网产品的利益,没什么创新,都是对标国外的产品。除了抄袭还是抄袭,科研没有实际的成果都只是为了骗取国家的补贴。</p>
<p>这年头的幼儿教育也是问题不断。应试教育也就算了,再怎么培养也是考试型人才。为了不让自己的孩子输在起跑线,给孩子报了大大小小的培训班。中国大多数父母都不希望自己的孩子是个“普通学生”,而是希望孩子能像别人家的孩子一样能考进名牌大学(被国家归为 211 或者 985 的大学),但事实上每年能挤过高考独木桥考取 211/985 的孩子有多少呢? 全国平均下来大约是 7% 。对 93% 的学生和家长来说,十几年来他们承受着巨大的压力,最后却几乎可以说在“读书”上是失败的。我们的学校除了教学生读书还教他们什么呢?</p>
<p>不论社会如何变化动荡,大家只想守护好自己的小小幸福罢了。</p>
</div>
<div>
<div>
<div class="text-center line pages-end">
<span>本文结束<i class="fa fa-meh-o fa-fw"></i>感谢您的阅读</span>
</div>
</div>
</div>
<div>
<div class="my_post_copyright">
<script src="//cdn.bootcss.com/clipboard.js/1.5.10/clipboard.min.js"></script>
<!-- JS库 sweetalert 可修改路径 -->
<script type="text/javascript" src="https://cdn.staticfile.org/jquery/1.7.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert@1.0.0/dist/sweetalert.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/sweetalert@1.0.0/dist/sweetalert.css">
<p><span>本文标题:</span><a href="/houseprice.html">侠之大者,为国接盘</a></p>
<p><span>文章作者:</span><a href="/" title="访问 陈宇(cosyer) 的个人博客">陈宇(cosyer)</a></p>
<p><span>发布时间:</span>2018年06月16日 - 17:06</p>
<p><span>最后更新:</span>2018年12月15日 - 13:12</p>
<p><span>原始链接:</span><a href="/houseprice.html" title="侠之大者,为国接盘">http://mydearest.cn/houseprice.html</a>
<span class="copy-path" title="点击复制文章链接"><i class="fa fa-clipboard" data-clipboard-text="http://mydearest.cn/houseprice.html" aria-label=" 复制成功!"></i></span>
</p>
<p><span>许可协议:</span><i class="fa fa-creative-commons"></i> <a rel="license" href="https://creativecommons.org/licenses/by-nc-nd/4.0/" target="_blank" title="Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)">署名-非商业性使用-禁止演绎 4.0 国际</a> 转载请保留原文链接及作者。</p>
</div>
<script>
var clipboard = new Clipboard('.fa-clipboard');
clipboard.on('success', $(function(){
$(".fa-clipboard").click(function(){
swal({
title: "",
text: '复制成功',
timer: 500,
showConfirmButton: false
});
});
}));
</script>
</div>
<div>
<div style="padding: 10px 0; margin: 20px auto; width: 90%; text-align: center;">
<div>坚持原创技术分享,您的支持将鼓励我继续创作!</div>
<button id="rewardButton" disable="enable" onclick="var qr = document.getElementById('QR'); if (qr.style.display === 'none') {qr.style.display='block';} else {qr.style.display='none'}">
<span>赏</span>
</button>
<div id="QR" style="display: none;">
<div id="wechat" style="display: inline-block">
<img id="wechat_qr" src="/images/wechatpay.png" alt="陈宇(cosyer) WeChat Pay"/>
<p>WeChat Pay</p>
</div>
<div id="alipay" style="display: inline-block">
<img id="alipay_qr" src="/images/alipay.png" alt="陈宇(cosyer) Alipay"/>
<p>Alipay</p>
</div>
</div>
</div>
</div>
<footer class="post-footer">
<div class="post-tags">
<a href="/tags/%E5%90%90%E6%A7%BD/" rel="tag"><i class="fa fa-tag fa-fw"></i> 吐槽</a>
<a href="/tags/%E6%88%BF%E4%BB%B7/" rel="tag"><i class="fa fa-tag fa-fw"></i> 房价</a>
</div>
<div class="post-nav">
<div class="post-nav-next post-nav-item">
<a href="/executionOrder.html" rel="next" title="JS执行顺序-函数声明提升、匿名函数、函数表达式">
<i class="fa fa-chevron-left"></i> JS执行顺序-函数声明提升、匿名函数、函数表达式
</a>
</div>
<span class="post-nav-divider"></span>
<div class="post-nav-prev post-nav-item">
<a href="/%E5%BE%AE%E4%BF%A1%E5%B0%8F%E7%A8%8B%E5%BA%8F%E9%9D%A2%E8%AF%95%E9%A2%98.html" rel="prev" title="微信小程序面试题">
微信小程序面试题 <i class="fa fa-chevron-right"></i>
</a>
</div>
</div>
</footer>
</div>
</article>
<div class="post-spread">
</div>
</div>
</div>
<div class="comments" id="comments">
<div class="comments v" id="comments"></div>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview sidebar-panel sidebar-panel-active">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="/images/avatar.jpg"
alt="陈宇(cosyer)" />
<p class="site-author-name" itemprop="name">陈宇(cosyer)</p>
<p class="site-description motion-element" itemprop="description">不去做的话永远也做不到。</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">159</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/index.html">
<span class="site-state-item-count">10</span>
<span class="site-state-item-name">分类</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/index.html">
<span class="site-state-item-count">51</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
<div class="feed-link motion-element">
<a href="/rss2.xml" rel="alternate">
<i class="fa fa-rss"></i>
RSS
</a>
</div>
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a rel="external nofollow" href="https://github.com/cosyer" target="_blank" title="GitHub">
<i class="fa fa-fw fa-github"></i>
GitHub
</a>
</span>
<span class="links-of-author-item">
<a rel="external nofollow" href="https://twitter.com/yzchenyu1995" target="_blank" title="Twitter">
<i class="fa fa-fw fa-twitter"></i>
Twitter
</a>
</span>
<span class="links-of-author-item">
<a rel="external nofollow" href="mailto:yzchenyu1995@gmail.com" target="_blank" title="E-Mail">
<i class="fa fa-fw fa-envelope"></i>
E-Mail
</a>
</span>
<span class="links-of-author-item">
<a rel="external nofollow" href="https://www.facebook.com/profile.php?id=100025666071215" target="_blank" title="FB Page">
<i class="fa fa-fw fa-facebook"></i>
FB Page
</a>
</span>
</div>
<div class="links-of-blogroll motion-element links-of-blogroll-inline">
<div class="links-of-blogroll-title">
<i class="fa fa-fw fa-globe"></i>
推荐阅读
</div>
<ul class="links-of-blogroll-list">
<li class="links-of-blogroll-item">
<a rel="external nofollow" href="http://callmesoul.cn" title="Callmesoul" target="_blank">Callmesoul</a>
</li>
<li class="links-of-blogroll-item">
<a rel="external nofollow" href="https://www.jstips.co/" title="JsTips" target="_blank">JsTips</a>
</li>
<li class="links-of-blogroll-item">
<a rel="external nofollow" href="http://dir.mydearest.cn/motion/" title="Personal Site" target="_blank">Personal Site</a>
</li>
<li class="links-of-blogroll-item">
<a rel="external nofollow" href="http://resume.mydearest.cn/" title="Resume" target="_blank">Resume</a>
</li>
</ul>
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright" >
©
<span itemprop="copyrightYear">2021</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">陈宇(cosyer)</span>
</div>
<div>
<span class="alive"></span>
</div>
<div class="powered-by">
<i class="fa fa-users fa-fw"></i>
<span id="busuanzi_container_site_uv">
终于等到你(UV): <span id="busuanzi_value_site_uv"></span>
</span>
|
<i class="fa fa-bar-chart-o fa-fw"></i>
<span id="busuanzi_container_site_pv">
欢迎再来(PV): <span id="busuanzi_value_site_pv"></span>
</span>
<div class="theme-info">
<div class="powered-by"></div>
<span class="post-count">Blog总字数: 312.5k字</span>
</div>
<div class="theme-info">
<div class="powered-by"></div>
<a class="post-count" href="http://www.beian.miit.gov.cn/" target="_blank">苏ICP备17005342号-1</a>
</div>
</div>
<!--
<div class="powered-by">
由 <a class="theme-link" href="https://hexo.io" target="_blank" rel="noopener">Hexo</a> 强力驱动
</div>
<div class="theme-info">
主题 -
<a class="theme-link" href="https://github.com/iissnan/hexo-theme-next" target="_blank" rel="noopener">
NexT.Mist
</a>
</div>
-->
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="https://cdn.lishaoy.net/js/index.js"></script>