大家回答下 谢谢:)~

解决方案 »

  1.   

    1、JSP:<%@ include file="A页面" %>2、JAVASCRIPT:如果有完整的HTML结构,可以取outerHTML
      

  2.   

    jquery 可以用 load()方法
      

  3.   

    a.html
    <html>
    <head>
    <script>
    function setParent(){
    parent.document.getElementById("div1").innerHTML = document.getElementsByTagName("html")[0].outerHTML.replace("window.onload", "window.onload_temp");
    }window.onload = setParent;
    </script>
    </head>
    <body>123</body>
    </html>b.html
    <div id="div1"></div><iframe src="a.html" style="display:none;"></iframe>