BLOG
Enjoy when you can, and endure when you must.
NOV 27, 2012/JavaScript
文档和元素的大小和滚动条
一、窗口的大小:     w = w || window;     if (w.innerWidth != null) return {width: w.innerWidth, height: w.innerHeight};     if (document.compatMode == "CSS1Compa...
1