Hallo @ll,
ich habe ein aufklappbares Menü gebastelt (thx an das Tutorial hier), dass ich in einem Frameset als Navi einsetzten will. (Frameset war nicht meine Idee, muss jetzt aber damit leben :suspekt: )
Das ganze schaut ganz ok aus, funktioniert an sich auch. Ausser, dass der aktuelle Menüpunkt die von mir zugewiesene css Eigenschaft nicht annimmt..
Vielleicht sehe ich den Fehler einfach nicht, oder ist das ein bekanntes Problem?
Vielen Dank für Eure Hilfe im Voraus.
lg,
hugo
Anbei die Codes:
ich habe ein aufklappbares Menü gebastelt (thx an das Tutorial hier), dass ich in einem Frameset als Navi einsetzten will. (Frameset war nicht meine Idee, muss jetzt aber damit leben :suspekt: )
Das ganze schaut ganz ok aus, funktioniert an sich auch. Ausser, dass der aktuelle Menüpunkt die von mir zugewiesene css Eigenschaft nicht annimmt..
Vielleicht sehe ich den Fehler einfach nicht, oder ist das ein bekanntes Problem?
Vielen Dank für Eure Hilfe im Voraus.
lg,
hugo
Anbei die Codes:
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="aufklapp_nav.css" type="text/css">
<title>Unbenanntes Dokument</title>
<script type="text/javascript">
<!--
function show(divid) {
d=document;
d.getElementById("cat1").style.display="none";
d.getElementById("cat2").style.display="none";
d.getElementById("cat3").style.display="none";
d.getElementById(divid).style.display="inline";
show2(dicid);
}
function show2(divid) {
d=document;
d.getElementById("cat32").style.display="none";
d.getElementById(divid).style.display="inline";
}
//-->
</script>
</head>
<body>
<table width="128">
<tr><td width="120">
<div class="ober"><a href="#" onclick="show('cat1')">Category 1</a><br></div>
<div class="unter" id="cat1" style="display:none">
<a href="#">Sub 1.1</a><br>
<a href="#">Sub 1.2</a><br>
<a href="#">Sub 1.3333333</a><br>
</div>
<div class="ober"><a href="#" onclick="show('cat2')">Category 2</a><br></div>
<div class="unter" id="cat2" style="display:none">
<a href="#">Sub 2.1</a><br>
<a href="#">Sub 2.2</a><br>
<a href="#">Sub 2.3</a><br>
</div>
<div class="ober"><a href="#" onclick="show('cat3')">Category 3</a><br></div>
<div class="unter" id="cat3" style="display:none">
<a href="#" onclick="show2('cat31')">Sub 3.1</a><br>
<a href="#" onclick="show2('cat32')">Sub 3.2</a><br>
<div class="unter2" id="cat32" style="display:none">
<a href="#" onclick="show2('cat32')" class="unter2_a">sub 3.2.1</a><br />
<a href="#" class="unter2_a" >sub 3.2.2</a><br />
<a href="#" class="unter2_a">sub 3.2.3</a><br />
<a href="#" class="unter2_a">sub 3.2.4</a></div>
<a href="#" onclick="show2('cat33')">Sub 3.3</a><br>
</div>
</td></tr>
</table>
</body>
</html>
HTML:
/* CSS Document */
a { font-family: Arial, Helvetica, sans-serif; font-size: 11px;
font-weight: normal; color:#333333; text-decoration: none;}
a:active { font-weight: bold; text-decoration: none;}
table.tabelle { border-style: outset; border-top-width: 1px; border-right-width:
1px; border-bottom-width: 1px; border-left-width: 1px}
a:hover { text-decoration: none; font-weight: 600;}
a:visited { }
div.ober {background-color:#CCCCCC; clear:both; margin-top: 2px; padding:3px;}
div.unter {background-color:#CCFF99; width:inherit; float:left; clear:both; margin-bottom:2px; margin-left:5px;}
div.unter2 {float:left; clear:right; margin-bottom:1px; color:#666666; margin-left:5px; width:inherit;}
.unter2_a {text-indent: 5px; color:#666666;}
/*div.rahmen { content:inherit; display:list-item;}
*/
a.nav, a.nav:link, a.nav:visited { color:#333333; text-decoration: none; font-weight: normal;}
Zuletzt bearbeitet: