iframe控件

   function goTo(url) {
            document.getElementById("iframeid").src = url; //获得要显示的页面,当点击时就会在iframe框架上展示
        }
        function SetCwinHeight() {
            var iframeid = document.getElementById("iframeid"); //iframe id
            if (document.getElementById) {
                if (iframeid && !window.opera) {
                    if (iframeid.contentDocument && iframeid.contentDocument.body.offsetHeight) {
                        iframeid.height = iframeid.contentDocument.body.offsetHeight+10;
                    } else if (iframeid.Document && iframeid.Document.body.scrollHeight) {
                        iframeid.height = iframeid.Document.body.scrollHeight+10;
                    }
                }
            }
        }

iframe控件

 <iframe name="top_main"  width="100%" scrolling="no" frameborder="0"  src="gundong1.aspx" 
id="iframeid" onload="SetCwinHeight();" ></iframe>添加iframe控件,设置面板大小,默认的地址是gundong1.aspx

其它面来调用,要指定iframe 的name

  <a href='list2.aspx?keywords=雅芳' target="top_main">雅芳</a> 
原文地址:https://www.cnblogs.com/liuwj/p/3401380.html