jquery更改绝对定位父高度到子高度

时间:2015-09-29 16:37:32

标签: jquery

我试图弄清楚有没有办法获得绝对定位子项的高度并使用jQuery将其设置为父项?例如,孩子有一个隐藏的div,单击一个单选按钮后,div将显示并展开绝对定位的孩子的高度。

string[][] SqlArray = new string[21][];
for(int index = 0; index < SqlArray.Length; index++)
{
    SqlArray[index] = new string[2000000];
}

1 个答案:

答案 0 :(得分:0)

您可以使用jQuery获取和设置高度,如下所示:

<!-- html from the comment from the original question -->
<ol id="relative_one">
    <li>
        <div class="tabbed_title">
        <div class="absolute_positioned child"></div>
    </li>
</ol>

var $child = $('.child');
var $parent = $('.tabbed_title');

$("#radioButton").change(function () {
    var childHeight = $child.height();
    $parent.height(childHeight);
});