需要一个像网易那样的附件添加列表,有数据的时候显示出来,无数据的时候数据列表隐藏,有一条数据就只显示一条数据列表的高度

解决方案 »

  1.   

    var parent=document.getElementById("parent");
    var child=document.createElement("div");
    parent.appendChild(child);
    parent.removeChild(child);
    大体思路这样
      

  2.   

    在页面最下方,body以里放入    <script type="text/javascript">
        function reinitIframe() {
            var iframe = document.getElementById("iframeID");
            try {
                iframe.height = iframe.contentWindow.document.documentElement.scrollHeight;
            }
            catch (ex) { }
        }
        window.setInterval("reinitIframe()", 200);
    </script>