Jump to content
  • 0

"поднятие" слоя!


ARA
 Share

Question

Привет всем!

У меня в скрипте какая-то ошибка!

Я хоче чтоб пj ножатие по слою (он в обсалютных координатах), он становился выше (1), чем остальный, а при ножитае по другому слою, возрощался на место (auto)!

не могу понять ошибку, он говорит !предпологается наличие индификатора!!

Подправтt меня! Спасибо

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html>
<head>
<title>Untitled</title>
<style type="text/css">
<!--
html, body {
margin: 0px;
padding: 0px;
border: none;
background: #fff;}

.listik {
width: 150px;
height: 130px;
margin: 0px;
padding: 0px;
border: solid 1px red;
position: absolute;}

.listik h3 {
width: auto;
height: auto;
margin: 0px;
padding: 3px 4px;
border: none;
background: #6c9;}

#l1 {background: #ff7; left: 18%; top: 24%; z-index: 1;}
#l2 {background: #ff6; left: 21%; top: 29%; z-index: 2;}
#l3 {background: #ff5; left: 24%; top: 34%; z-index: 3;}
#l4 {background: #ff4; left: 27%; top: 39%; z-index: 4;}
#l5 {background: #ff3; left: 30%; top: 44%; z-index: 5;}
#l6 {background: #ff2; left: 33%; top: 49%; z-index: 6;}
#l7 {background: #ff1; left: 36%; top: 54%; z-index: 7;}
--></style>

<script type="text/javascript">
<!--
function up(id)
{
for (k=1; k<=10; k++)
{
document.all.('u' + k).style.zIndex='auto';
}

document.getElementById(id).style.zIndex='1';
}
//-->
</script>

</head>

<body>
<div class="listik" id="l1"><h3 onclick="up('l1');">Zagolovok</h3></div>
<div class="listik" id="l2"><h3 onclick="up('l2');">Zagolovok</h3></div>
<div class="listik" id="l3"><h3 onclick="up('l3');">Zagolovok</h3></div>
<div class="listik" id="l4"><h3 onclick="up('l4');">Zagolovok</h3></div>
<div class="listik" id="l5"><h3 onclick="up('l5');">Zagolovok</h3></div>
<div class="listik" id="l6"><h3 onclick="up('l6');">Zagolovok</h3></div>
<div class="listik" id="l7"><h3 onclick="up('l7');">Zagolovok</h3></div>
</body>
</html>

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy