我有指定宽度和高度的“div”元素,在 CSS 中以百分比表示。
我想通过 JS 脚本获取以像素表示的宽度和高度。甚至有可能吗?
问问题
20490 次
4 回答
6
您可以使用
el.clientHeight;
el.clientWidth;
(el
是对元素的引用)
请注意,这些属性最初是在 MS IE DHTML 对象模型中引入的。最近,它们在CSSOM 视图模块中被标准化,W3C 工作草案 2008 年 2 月 22 日。
这些属性得到了广泛的支持。但是,旧的不兼容 MS 的浏览器可能不支持它们。在这些情况下,您可以使用getComputedStyle
:
function findSize(el, size) {
/* size must be 'width' or ' height' */
return window.getComputedStyle
? getComputedStyle(el,null).getPropertyValue(size)
: el['client'+size.substr(0,1).toUpperCase() + size.substr(1)] + 'px';
}
findSize(el, 'width');
findSize(el, 'height');
浏览器对getComputedStyle
和clientHeight
/clientWidth
方式的支持至少是:
| IE | Firefox | Chrome | Safari | Opera
-----------------|-----------------------------------------
getComputedStyle | 9 | <=3 | 1 | <=4 | <=10
client | <=5 | <=3 | 1 | <=4 | <=10
(<=n
意味着至少从 version 支持它n
,但我无法测试以前的版本)
于 2012-08-28T19:05:17.947 回答
2
Use window.getComputedStyle()
for this
<div style="wdith:50%">50% width</div>
(function() {
var div = document.getElementsByTagName("div")[0];
console.log(window.getComputedStyle(div, null)["width"]);
}())
Supported by all major browsers and IE9+. For lower versions of IE have a look at currentStyle
于 2012-08-28T19:14:53.677 回答
1
于 2012-08-28T19:09:07.927 回答
0
jQuery 键是:
$("#div").width($("#div").width());
于 2014-12-03T11:50:24.223 回答