0

我想用 jquery 从 css 文件中获取宽度,但是当使用这个方法时:

$('element').width() $('element').css('width');获取像素大小元素,但在 css 文件中,此元素具有百分比大小...。

如何得到它。 html:

<div id="content"></div>

css

#content{width:50%}
4

1 回答 1

0

为了无聊:

var mywidth = $('#content').width(),
    parentwidth = $('#content').parent().width(),
    percentagewidth = (mywidth*100)/parentwidth;
    alert(precentagewidth+"%");

==四舍五入==

Math.round(precentagewidth)

Math.round()文档。

于 2013-07-28T07:56:52.040 回答