如何获得具有浮动元素的元素的实际宽度

时间:2014-12-06 04:53:31

标签: javascript jquery html css

我正在尝试获取段落元素的宽度,如图片enter image description here

我希望获得红色框中内容的宽度,而当我使用$(“p”)。width()时,我得到800,但是右边有一个浮动图像。< / p>

如何获得此段的ACTUAL宽度?

页面网址为:http://www.businessinsider.com/healthy-at-work-without-a-standing-desk-2014-12?utm_content=&utm_medium=email&utm_source=alerts&nr_email_referer=1

1 个答案:

答案 0 :(得分:0)

在css中给出你的段落

p{
   display: table;
}

在js中使用

$('p').outerWidth();

DEMO在chrome中测试,即