diff --git a/_posts/2015-05-20-scope.md b/_posts/2015-05-20-scope.md index cddcc4635c5..796122f11c5 100644 --- a/_posts/2015-05-20-scope.md +++ b/_posts/2015-05-20-scope.md @@ -1,14 +1,26 @@ --- layout: post -title: "JavaScript作用域" +title: "JavaScript 作用域和作用域链" date: 2015-05-20 14:06:05 categories: Front-end JavaScript -excerpt: JavaScript作用域学习笔记。 +excerpt: JavaScript作用域和作用域链学习笔记。 --- * content {:toc} +## JavaScript 作用域 + +作用域就是变量与函数的可访问范围。在JavaScript中,变量的作用域有全局作用域和局部作用域两种。 + +--- + +### 全局作用域(Global Scope) + +在代码中任何地方都能访问到的对象拥有全局作用域,一般来说以下 3 种情形拥有全局作用域。 + + + 参考资料 * [鸟哥:Javascript作用域原理](http://www.laruence.com/2009/05/28/863.html) diff --git a/static/css/index.css b/static/css/index.css index 07f92216d44..f77b0121de5 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -60,6 +60,9 @@ nav{ } /* index main */ +.main{ + min-height: 800px; +} .post-area{ background-color:#f8f8fd; @@ -204,7 +207,6 @@ footer{ line-height: 50px; margin-top: 80px; background: #3f4850; - display: none; color: #aaa; text-align: center; diff --git a/static/js/index.js b/static/js/index.js index e0d0a5b3084..d50c392d871 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -12,9 +12,9 @@ $(document).ready(function() { * load方法,页面的加载完成后触发 * {fixFooterInit();} 固定Footer栏 */ -$(window).load(function() { +/*$(window).load(function() { fixFooterInit(); -}); +});*/ /**