使用JQuery </div>在<div>中加载JSP页面

时间:2012-03-23 07:41:50

标签: jquery html css

These are the two divs in my page

      #apDiv1 {
    position:absolute;
    left:0px;
    top:115px;
    width:100%;
    height:100%;
    z-index:4;
}
        #apDiv2 {
        position:relative;
    left:0px;
    top:0px;
    width:100%;
    height:100%;
    z-index:5;
}

where apDiv2 is nested in apDiv1 
<div id="apDiv1">
<div id="apDiv2" style="overflow:auto"></div>
</div>

what i wanna do is to load another page 'server_gen.jsp' in apDiv2 by using 

    $('#apDiv2').load('server_gen.jsp'); 
  • 正在按预期在apDiv2中加载页面......但问题是 'server_gen.jsp'页面元素没有显示在 top在apDiv2 ...(我想要server_gen.jsp页面元素 显示从apDiv2的0px)...我怎么能显示server_gen.jsp apDiv2的元素来自(即从0px开始)?请帮助

1 个答案:

答案 0 :(得分:0)

尝试在vertical-align: top;样式

中添加#apDiv2