我在用动态内容填充 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 的高度以适应动态内容的大小?