我想用 jquery 从 css 文件中获取宽度,但是当使用这个方法时:
$('element').width()
或 $('element').css('width');
获取像素大小元素,但在 css 文件中,此元素具有百分比大小...。
如何得到它。 html:
<div id="content"></div>
css
#content{width:50%}
为了无聊:
var mywidth = $('#content').width(),
parentwidth = $('#content').parent().width(),
percentagewidth = (mywidth*100)/parentwidth;
alert(precentagewidth+"%");
==四舍五入==
Math.round(precentagewidth)
Math.round()文档。