BOM基础
打开窗口 window.open('about:blank','_blank') 第一个参数是打开哪一个口,第二个参数是在哪里打开窗口。
关闭窗口 window.close()
window.location() 可以读取,也可以赋值
可视区尺寸 宽 document,documentElement.clientWidth 高 document.documentElement.clientHeight
滚动距离 document.documentElement.scrollTop (ie ff) | document.body.scrollTop
div固定定位:非ie6浏览器 position:fixed;
其他浏览器 position:absolute;并且用js实现
js核心代码:div.style.top=document.doumentElement.clientHeight-div.offsetHeight+scrollTop+'px';