admin管理员组文章数量:1344241
I have elements with an external style of height
with percentages. when I am trying to save the height as a variable to use, it is saving it as pixels
some times nothing.
html For example:
<div id='firstDiv'></div>
<div id='secondDiv'></div>
css code
#firstDiv{
width:50%;
height:50%;
}
#secondDiv{
width:20%;
height:50%;
}
Jquery code
$('div').each(function (){
console.log($(this)[0].style.height);
}
how can i get it as %
?
I have elements with an external style of height
with percentages. when I am trying to save the height as a variable to use, it is saving it as pixels
some times nothing.
html For example:
<div id='firstDiv'></div>
<div id='secondDiv'></div>
css code
#firstDiv{
width:50%;
height:50%;
}
#secondDiv{
width:20%;
height:50%;
}
Jquery code
$('div').each(function (){
console.log($(this)[0].style.height);
}
how can i get it as %
?
- there is no way to get in percent but some trick height/100 would help ?? – Bhojendra Rauniyar Commented Apr 23, 2014 at 6:28
-
1
$(this)[0]
can just be replaced bythis
, can't it? – King King Commented Apr 23, 2014 at 6:29 - and explain why do you need actually this in percentage ??? we could use an alternative for that.... – Bhojendra Rauniyar Commented Apr 23, 2014 at 6:32
- Check this stackoverflow./a/4006610/3153869 Hope, it will help – makambi Commented Apr 23, 2014 at 6:37
- This is for width but you can use it for height as well - stackoverflow./questions/23235461/… – Pooja Shah Commented Apr 23, 2014 at 6:41
5 Answers
Reset to default 2To get the value in %, you can divide the value with either the top most node [1st parent in dom]
parseFloat($(this)[0].style.height / $('#idOfFirstParent').height ()) * 100;
, if you want to get the value in reference to the 1st parent in the DOM or by width of the document [this will start with 0,0 of your screen].
(parseFloat($(this)[0].style.height/ $('window').height ()) * 100).toFixed(2);
or
(parseFloat($(this)[0].style.height / $('document').height ()) * 100).toFixed(2);
Try this, not direct option in jQuery.
var height = ( 100 * parseFloat($(element).css('height')) / parseFloat($(element).parent().css('height')) ) + '%';
Just calculate the percentage:
var w = $("#myDiv").css("width").slice(0,-2);
var ww = $(window).width();
console.log(w/ww*100);
Use parseInt(string). It removes the chars after any numbers if the string begins with numbers
$(this).height()
will give height of your divs in percentage(as they have been set in percentage) and will be unit less.
本文标签: javascriptgetting width or height as percentage instead of pixelsStack Overflow
版权声明:本文标题:javascript - getting width or height as percentage instead of pixels - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743724521a2528139.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论