案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
#img1
5
{
6
position:absolute;
7
left:0px;
8
top:0px;
9
z-index:-1
10
}
11
</style>
12
<script type="text/javascript">
13
function changeStackOrder()
14
{
15
document.getElementById("img1").style.zIndex="1";
16
}
17
</script>
18
</head>
19
<body>
20
21
<h1>This is a Heading</h1>
22
23
<img id="img1" src="/img/eg_bulbon.gif">
24
25
<p>Default z-index is 0. Z-index -1 has lower priority.</p>
26
27
<input type="button" onclick="changeStackOrder()" value="Change stack order" />
28
29
</body>
30
</html>
31