如何获取一个dom元素的宽和高
1.通过dom的style属性获取宽和高,只能获取内联属性的值dom.style.width/height2.无论像是class还是内联还是style都会被浏览器渲染,在渲染之后就会通过currentStyle,不过只有IE支持dom.currentStyle.width/height3.getComputedStyle兼容Firefox和Chromewindow.getCom...