代碼爲我的主網頁的頁面下方:AJAX:如何使加載的頁面出現在調用它
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<style type="text/css">
div
{
width:100%;
height:100px;
background-color:rgba(189,123,124,1.00);
position:absolute;
bottom:0;
/* make this div TOPMOST */
z-index:9000;
}
.container
{
/* make the page that will be loaded appear below the div */
z-index:200;
}
</style>
</head>
<body>
<div>
<div class="container">
</div>
</div>
<script type="text/javascript">
$(document).ready(function()
{
$(window).on("click", function()
{
$("div.container").load("Page1.html");
});
});
</script>
</body>
正如你可以在上面看到,我試圖讓在底部出現紅色格酒吧最上面,所以當用戶點擊瀏覽器窗口時加載Page1.html時,底部的這個紅色條仍然在最上面。現在
,我對Page1.html代碼:
<head>
<style type="text/css">
body, html
{
height:100%;
}
div
{
width:100%;
height:100%;
background-color:rgba(171,147,136,1.00);
}
</style>
</head>
<body>
<div>Page One</div>
</body>
然而,當Page1.html被加載,它徹底亮起紅格欄的頂部和DIV欄消失。看起來像Z-Index是無用的。我該如何解決?
你可以看到實際的頁面在這裏:http://oneniceday.com/SR-1/Test2.html
是你想要它在下面或你想要它? Z索引用於重疊。 – Minato