第一章
1.1 /窗口尺寸、工作区尺寸
document.documentElement.clientWidth,document.documentElement.clientHeight,document.body.scrollTop,document.documentElement.scrollTop
1.2 /window常用事件
onload,onresize,onscroll
2.1 /DOM节点操作
childNodes,nodeType,children,parentNode,offsetParent
2.2 /首尾子节点(有兼容问题)
firstChild--firstElementChild,lastChild--lastElementChild
2.3 /兄弟节点(有兼容问题)
nextSibling--nextElementSibling,previousSibling--previousElementSibling
2.4 /属性节点
getAttribute,setAttribute,removeAttribute
2.5 /className选择元素
className
3.1 /创建、插入和删除元素
createElement,appendChild,insertBefore,removeChild,document.createDocumentFragment(),//最后一个是文档碎片整理