div自适应

height:auto !important;
height:200px; /*假定最低高度是200px*/
min-height:200px;


忘记说了一点:整个是在一个iframe里面,而这个ifrme在页面load时做了自适应处理
<iframe id="doclistfrm" name="doclistfrm" onload="iFrameHeight('doclistfrm')"></iframe>
  function iFrameHeight(frmName)
  {
var ifm= document.getElementById(frmName);
var subWeb = document.frames ? document.frames[frmName].document : ifm.contentDocument;
if(ifm != null && subWeb != null)
{
ifm.height = subWeb.body.scrollHeight;
}
}


应该是iframe的问题,你重置一下iframe的高度:window.parent.document.getElementById("yourIframeID").height


tabs.items.getCount()
是要控制某个tabpanel的标签页数量吗,可以在打开前验证它标签页的数量呀,如果达到一定限制就提示不能再创建新标签页了。可以用tabs.items.items.length来获取tabs的标签数量。

你可能感兴趣的:(div)