获取动态宽度元素的编号

时间:2012-07-17 19:34:26

标签: javascript dom

我希望动态宽度元素的数字(没有Px)宽度(宽度:自动),我尝试使用clientWidth,parseInt,offsetWidth,但它总是以“0”或NaN返回。 / p>

我怎么能拥有这些数字?

非常感谢。

1 个答案:

答案 0 :(得分:1)

在jquery中

 alert($("#mydiv").innerWidth().replace("px",""));

在javascript中

alert (document.getElementById('mydiv').style.width.replace("px",""));