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');
答案 0 :(得分:0)
尝试在vertical-align: top;
样式
#apDiv2