最大化按钮不调整字段集大小

时间:2016-03-10 07:08:30

标签: javascript asp.net-mvc-4

我有一个载有子内容的字段集。我已根据window.height()动态设置字段集的高度和最小高度。

当我打开应用程序时,窗口大小最小化。当我最大化窗口。字段集高度不会改变。

你能帮忙吗?以下是代码。

<fieldset class="step-3 body" id="wizard-p-2" role="tabpanel" aria-labelledby="wizard-h-2" style="left: -930px; width:100%; overflow-y: auto">
                                        <div id="alert">My Alert</div>
                                        @RenderBody()
                                    </fieldset>

用于设置高度和最小高度的java脚本

$(document).ready(function () {
    $("fieldset").css("min-height", ($(window).height() - 200));
    $("fieldset").css("height", ($(window).height() - $(window).height()*0.3))
});

1 个答案:

答案 0 :(得分:1)

试试这个

$(window).resize(function(){
 $("fieldset").css("min-height", ($(window).height() - 200));
 $("fieldset").css("height", ($(window).height() - $(window).height()*0.3))
});