欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

从css样式表中抽取元素尺寸_html/css_WEB-ITnose

程序员文章站 2022-05-03 13:47:38
...
jS从样式表取值的函数,IE中以currentStyle,firefox中defaultView来获取

DOM.style只能读到写在html中的样式值

获取样式值的函数

function returnStyle(obj,styleName){var myObj = typeof obj =="string" ? document.getElementById(obj) : obj;if(document.all){return eval("myObj.currentStyle."+ styleName);} else {returneval("document.defaultView.getComputedStyle(myObj,null)." +styleName);}}