forked from worried-k/worried-k.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (87 loc) · 4.31 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="keywords" content="" />
<title>worried-k</title>
<meta name="description" content="Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description.
">
<link rel="stylesheet" href=" /css/main.css ">
<!--[if lte IE 8]><script src=" /css/ie/html5shiv.js "></script><![endif]-->
<script src=" /js/jquery.min.js "></script>
<script src=" /js/jquery.poptrox.min.js "></script>
<script src=" /js/skel.min.js "></script>
<script src=" /js/init.js "></script>
<noscript>
<link rel="stylesheet" href=" /css/skel.css "/>
<link rel="stylesheet" href=" /css/style.css "/>
<link rel="stylesheet" href=" /css/style-xlarge.css "/>
</noscript>
<!--[if lte IE 8]><link rel="stylesheet" href="/css/ie/v8.css"/><![endif]-->
</head>
<body id="top">
<header id="header">
<h1><strong>Worried-k Blog</strong></h1>
<h6><strong>Live in the present !</strong></h6>
</header>
<div id="main">
<section>
<header>
<p>Mar 26, 2016 <a href="/myblog/2016/03/26/cross-in-javascrpt.html">关于JavaScript的同源策略</a></p>
<blockquote><p><strong>同源策略,它是由Netscape提出的一个著名的安全策略,现在所有的可支持javascript的浏览器都会使用这个策略。———部分内容为摘录</strong></p>
</blockquote>
</header>
</section>
<section>
<header>
<p>Mar 23, 2016 <a href="/myblog/2016/03/23/ajax-in-javascrpt.html">关于JavaScript的AJAX</a></p>
<blockquote><p><strong>AJAX即“Asynchronous Javascript And XML”!它类似于DHTML或LAMP,AJAX不是指一种单一的技术,而是有机地利用了一系列相关的技术。</strong></p>
</blockquote>
</header>
</section>
<section>
<header>
<p>Mar 22, 2016 <a href="/myblog/2016/03/22/false-value-in-javascrpt.html">关于javascript中的假值</a></p>
<blockquote><p><strong>JavaScript变量是无类型的(untyped),变量可以被赋予任何类型的值,其中有6个值属于假值</strong></p>
</blockquote>
</header>
</section>
<section>
<header>
<p>Mar 20, 2016 <a href="/myblog/2016/03/20/closure-in-javascrpt.html">关于javascript中的闭包</a></p>
<blockquote><p><strong>函数对象可以通过作用域链相互关联起来,函数体内部的变量都可以保存在函数作用域内,这种特性在计算机科学文献中称之为“闭包”</strong></p>
</blockquote>
</header>
</section>
<section>
<header>
<p>Mar 19, 2016 <a href="/myblog/2016/03/19/timers-in-javascrpt.html">关于javascript中的那些Timers</a></p>
<blockquote><p><strong>setTimeout()和setInterval()可以用来注册在指定的时间之后单次或重复调用的函数。</strong></p>
</blockquote>
</header>
</section>
<section>
<header>
<p>Mar 18, 2016 <a href="/myblog/2016/03/18/this-in-javascript.html">关于javascript中this的那些事</a></p>
<blockquote><p><strong>this是Javascript语言中的一个关键字!(不是变量,也不是属性)</strong>它是面向对象编程范例的核心之一。this没有作用域的限制,嵌套函数不会从调用它的函数中继承到this!</p>
</blockquote>
</header>
</section>
</div>
<footer id="footer">
<ul class="icons">
<li><a href="#" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="https://github.com/worried-k" target="_blank" class="icon fa-github"><span class="label">Github</span></a></li>
<li><a href="#" class="icon fa-envelope-o"><span class="label">Email</span></a></li>
</ul>
<ul class="copyright">
<li>© 2016</li>
<li>worried-k 转载请注明出处</li>
</ul>
</footer>
</body>
</html>