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