0

我在用动态内容填充 HTML div 时遇到问题。当在 div 内加载动态数据时,它的高度不会扩展以适应内容。动态内容的jquery代码是:

$('.width_3_quarter').append('<h2>Selected Groups</h2>');
                            for(var i=0; i<userGroups.length; i++)
                            {   
                                var div=$('<div id="data"'+i+' style="display:block;">'+userGroups[i]+'</div> ');
                                $('.width_3_quarter').append(div);
                            }

                            var selCat=$('<div id="selectedCat"><span style="font-weight:bold; text-decoration:underline;">Groups Selected </span></div>');
                            var label=$('<label style="margin-top:-1px; margin-bottom:0px;position:absolute;font-weight:bold;text-decoration:underline;">Available Groups </label>');

                            var selectedData=$('<div id="myData"></div>');

                            var select=$('<select id="grpSelect" name="grpSelect" multiple="multiple"> </select>');
                            for(var i=0;i<listGroups.length; i++)
                            {
                                var option=$('<option value="'+listGroups[i]+'">'+listGroups[i]+'</option>');
                                select.append(option);
                            }


                            var button=$('<input type="button" value="submit" id="valSubmit" onclick="addGrp();"/>');

                    selCat.append(selectedData);
                $('.width_3_quarter').append(label);
                selCat.prepend(button);
                $('.width_3_quarter').append(select);
                $('.width_3_quarter').append(selCat);

在这里,数据是从带有字符串值的静态数组中加载的。

html div 如下:

<div class="module width_3_quarter" style="clear:both;">

当我将静态数据放入 div 时,它正在扩展以适应内容的大小。但是,动态数据并非如此。CSS是:

.width_3_quarter {
width: 73%;
    margin-right: 0;
    min-height: 462px;
    font-weight: normal;
    display: inline-block;
    text-indent: 20px;
    overflow: hidden;
    color: #1F1F20;
    text-transform: uppercase;
    text-shadow: 0 1px 0 #fff;
    line-height: 36px;
    font-size: 18px;


}

div 的屏幕截图

如何控制 div 的高度以适应动态内容的大小?

4

3 回答 3

1

而不是overflow:hidden做一个overflow:auto

于 2013-11-08T11:26:05.203 回答
0

这样做怎么样

overflow: hidden;
overflow-y: auto;

根据经验,您有时必须指定要溢出的轴

于 2013-11-08T11:33:16.157 回答
0

尝试将最小高度更改为 100%:

min-height:100%;
于 2013-11-08T11:29:46.840 回答