12

在查看了Make JQuery UI Dialog automatically grow or shrink to fit its contents之后,我height: "auto"在构建 jQuery 模态对话框时使用了该选项:

$( "#dialog-message" ).dialog({
    autoOpen: false,
    width: "400",
    height: "auto",
    show: "slide",
    modal: true,
    buttons: {
        Ok: function() {
            $( this ).dialog( "close" );
        }
    }
});

但是,高度不会“增长”以适应所有内容。我仍然看到一个垂直滚动条,如下图所示:

jQuery 模态对话框图像

在我列出的定义代码中是否有一种方法可以确保高度增长到足以使垂直滚动条不显示?或者,我是否需要在打开对话框之前以编程方式执行此操作?

编辑 1
不知道为什么,但 Chrome 显示这很好,但 IE 8 不是。我需要它专门在 IE 8 中工作,所以我相信我只是要在文本上放置一个底部边距。

4

4 回答 4

9

这就是我为对话框自动增长所做的一切

$("#edit_dependent").dialog({

  autoOpen:false,

  modal:true,

  width:800,

  position:["center",20],

  minHeight:"auto"

});
于 2014-04-18T17:35:54.373 回答
2

这很奇怪......我不确定这会有多大帮助,但我确实设法让自动高度与以下代码一起使用:

<html>
<head>
<link href="jqueryUI/css/ui-lightness/jquery-ui-1.8.19.custom.css" 
    rel="stylesheet" type="text/css">
<script src="jquery-1.7.1.js"></script>
<script src="jqueryUI/js/jquery-ui-1.8.19.custom.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
    $("#dialog").dialog({
    autoOpen: false,
    width: "400",
    height: "auto",
    show: "slide",
    modal: true,
    buttons: {
        Ok: function() {
            $( this ).dialog( "close" );
        }
    }
    });
    $("#dialog").dialog('open');
});
</script>

</head>
<body>
<div id="dialog">
1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />
</div>
</body>
</html>

它基本上使用您已经建立的相同结构。

于 2012-05-02T16:44:28.217 回答
1

这是晚了 4 年,但我有同样的问题。

编写修复它的代码

在你的对话框上放一个独特的类:

dialogClass:"someClassName"

$(".someClassName").resize(function () {
    var totalHeight = 0;
    var children = $(".someClassName").children(); //get all divs inside the dialog
    for (var i = 0; i < children.length; i++) {
        if ($(children[i]).innerWidth() > 15) {
            var childrenHeight = children[i].scrollHeight;
            totalHeight += childrenHeight;//make sure your dialog will be the correct height
        }
    }
    $("#idOfContentWithWrongHeight").innerHeight($("#idOfContentWithWrongHeight")[0].scrollHeight);//put the content at the height it should appear
    $(".someClassName").height(totalHeight);//update the height of the dialog
});
于 2016-04-21T17:37:22.057 回答
0

这是示例演示

 $( "#dialog-message" ).dialog({
        modal: true,
        height: "auto",
                buttons: {
                    Ok: function() {
                        $( this ).dialog( "close" );
                    }
                }

            });
            setTimeout(function() {
            $('#inside').append("Hello!<br>");
            setTimeout(arguments.callee, 1000);
  },1000);​
于 2012-05-02T16:39:35.240 回答