06 2017 档案
摘要:二叉树的构造 二叉树的遍历 深度优先: 广度优先: 翻转二叉树
阅读全文
摘要:快速排序的概念 快速排序(维基百科) https://zh.wikipedia.org/wiki/%E5%BF%AB%E9%80%9F%E6%8E%92%E5%BA%8F 白话算法 - 快速排序 http://blog.csdn.net/morewindows/article/details/668
阅读全文
摘要:BOM中的高度属性主要涉及三块:screen、window、文档下的元素。 screen 其中screen最简单,代表着显示器的对象。 screen.height :屏幕高度,像素为单位。 screen.availHeight :屏幕高度送去Windows系统的任务栏的高度。 从左到右,分别是Edg
阅读全文
摘要:定义 innerHTML: 属性设置或返回表格行的开始和结束标签之间的 HTML。(也就数说,用innerHTML的元素必须是标签对的形式,也就是input啥都输不出来) outerHTML: 设置或获取对象及其内容的 HTML 形式。(标签对,input输出本身) innerText: 设置或获取
阅读全文
摘要:一、DOM创建 DOM节点(Node)通常对应于一个标签,一个文本,或者一个HTML属性。DOM节点有一个nodeType属性用来表示当前元素的类型,它是一个整数: DOM节点创建最常用的便是document.createElement和document.createTextNode方法: 二、DO
阅读全文
摘要:Closures allow JavaScript programmers to write better code. Creative, expressive, and concise. We frequently use closures in JavaScript, and, no matte
阅读全文
摘要:JavaScript Modules: A Beginner’s Guide JavaScript Modules: A Beginner’s Guide If you’re a newcomer to JavaScript, jargon like “module bundlers vs. mod
阅读全文
摘要:Mastering the Module Pattern Mastering the Module Pattern JAN 29, 2014 - Edit this page on GitHub I’m a massive fan of JavaScript’s Module Pattern and
阅读全文
摘要:下面的内容展示了一个常见的 Response Headers,这些 Headers 要求客户端最多缓存 3600 秒,也给出了一个 pub1259380237;gz 的校验值。 对于缓存而言,我们主要用了 Etag,Cache-Control 和 Last-Modified。 Cache-Contr
阅读全文