闭包是指那些能够访问独立(自由)变量的函数 (变量在本地使用,但定义在一个封闭的作用域中)。换句话说,这些函数可以“记忆”它被创建时候的环境。
变量作用域
考虑如下情况:
|
|
函数foo()
创建了一个局部变量a
,仅在函数内部可以访问。
Quick notes
闭包是指那些能够访问独立(自由)变量的函数 (变量在本地使用,但定义在一个封闭的作用域中)。换句话说,这些函数可以“记忆”它被创建时候的环境。
考虑如下情况:
|
|
函数foo()
创建了一个局部变量a
,仅在函数内部可以访问。
在PC网站开发中,浮动布局经常用到。通常在运用浮动的时候,会遇到个问题:父容器无法被子元素的内容撑开。就是由于浮动的子元素
脱离了父容器。看下面的例子:
|
|
|
|
|
|
|
|
jqGrid 是一个用来显示网格数据的jQuery插件,通过使用jqGrid可以轻松实现前端页面与后台数据的ajax异步通信,也可前端页面中本地添加数据。
下面给出一个本地添加数据的实例。
很多时候,在使用$.post
向后台请求数据时,如果后台处理数据时间太长,可能会无法完成请求,这时就需要定时查询
|
|
Every programmer should know about VCS(Version Control System) especially GIT. This post serves as a short reference for most popular GIT commands. They are grouped by functionality and has a short explanation above them.To use them copy any command to your favorite command line tool.And if you wish to learn more about GIT check this out.
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.