我希望动态宽度元素的数字(没有Px)宽度(宽度:自动),我尝试使用clientWidth,parseInt,offsetWidth,但它总是以“0”或NaN返回。 / p>
我怎么能拥有这些数字?
非常感谢。
答案 0 :(得分:1)
alert($("#mydiv").innerWidth().replace("px",""));
在javascript中
alert (document.getElementById('mydiv').style.width.replace("px",""));