HTML DOM zIndex ÊôÐÔ
¶¨ÒåºÍÓ÷¨
zIndex ÊôÐÔÉèÖÃÔªËØµÄ¶Ñµþ˳Ðò¡£
¸ÃÊôÐÔÉèÖÃÒ»¸ö¶¨Î»ÔªËØÑØ z ÖáµÄλÖã¬z ÖᶨÒåΪ´¹Ö±ÑÓÉìµ½ÏÔÊ¾ÇøµÄÖá¡£Èç¹ûΪÕýÊý£¬ÔòÀëÓû§¸ü½ü£¬Îª¸ºÊýÔò±íʾÀëÓû§¸üÔ¶¡£
Óï·¨£º
Object.style.zIndex=auto|number
¿ÉÄܵÄÖµ
Öµ | ÃèÊö |
---|---|
auto | ĬÈÏ¡£¶Ñµþ˳ÐòÓë¸¸ÔªËØÏàµÈ¡£ |
number | ÉèÖÃÔªËØµÄ¶Ñµþ˳Ðò¡£ |
ÌáʾºÍ×¢ÊÍ
×¢ÊÍ£ºÔªËØ¿ÉÓµÓиºµÄ z-index ÊôÐÔÖµ¡£
×¢ÊÍ£ºZ-index ½öÄÜÔÚ¶¨Î»ÔªËØÉÏ×àЧ£¨ÀýÈç position:absolute;£©£¡
ʵÀý
±¾Àý¸Ä±äÔªËØµÄ¶Ñµþ˳Ðò£º
<html>
<head>
<style type="text/css">
#img1
{
position:absolute;
left:0px;
top:0px;
z-index:-1
}
</style>
<script type="text/javascript">
function changeStackOrder()
{
document.getElementById("img1").style.zIndex="1";
}
</script>
</head>
<body>
<h1>This is a Heading</h1>
<img id="img1" src="bulbon.gif" width="100" height="180">
<p>Default z-index is 0. Z-index -1 has lower priority.</p>
<input type="button" onclick="changeStackOrder()"
value="Change stack order" />
</body>
</html>