How to get computed style of a HTMLElement
no jQuery. pure javascript.
e.g. Use element.height but I got nothing.
I ever seen开发者_运维问答 code like below befow:
(ele.style || ele)[styleName]
but I forgot what it use to.
Take a look at:
- Get the rendered style of an element
There are some pointers in http://www.quirksmode.org/dom/getstyles.html
also, google clientHeight offsetHeight
and you will find info on height.
精彩评论