NEW_IN_JAVA
Grünschnabel
Hi
Ich habe das problem mit dem klappbaren Menü. Nämlich wenn ich auf den Hauptpunkt klicke werden die Unterpunkte kurz angezeigt, die verschwinden dann und rechts taucht der Text auf. Ich will das aber die Unterpunkte aufgeklappt bleiben.
Bsp:
(das will ich haben)
FOTOS -->CONTENT (rechts)
-Sommer
KONTAKT
(aber das wird angezeigt)
FOTOS -->CONTENT(rechts)
KONTAKT
Noch mal zusammengefasst wenn ich auf FOTOS klicke soll der Unterpunkt Sommer und der Content rechts angezeigt werden. Aber bei mir zeigt er kein Sommer an, aber den Content.
Ich hoffe ihr könnt mir helfen.
Ich habe das problem mit dem klappbaren Menü. Nämlich wenn ich auf den Hauptpunkt klicke werden die Unterpunkte kurz angezeigt, die verschwinden dann und rechts taucht der Text auf. Ich will das aber die Unterpunkte aufgeklappt bleiben.
Bsp:
(das will ich haben)
FOTOS -->CONTENT (rechts)
-Sommer
KONTAKT
(aber das wird angezeigt)
FOTOS -->CONTENT(rechts)
KONTAKT
Noch mal zusammengefasst wenn ich auf FOTOS klicke soll der Unterpunkt Sommer und der Content rechts angezeigt werden. Aber bei mir zeigt er kein Sommer an, aber den Content.
PHP:
<!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" />
<title>Unbenanntes Dokument</title>
</head>
<body>
<div id="Layer2">
<script type="text/javascript">
<!--
function show(divid) {
d=document;
d.getElementById("cat1").style.display="none";
d.getElementById("cat2").style.display="none";
d.getElementById(divid).style.display="inline";
}
//-->
</script>
<a href="index.php?action=Fotos" target="_self" onclick="show('cat1')"><font color="#FFFFFF">Fotos</font></a><br>
<div id="cat1" style="display:none">
<a href="index.php?action=Sommer" target="_self"><font color="#97bf0e">Sommer</font></a><br>
</div>
<br>
<a href="index.php?action=Kontakt" target="_self" onclick="show('cat2')"><font color="#FFFFFF">Kontakt</font></a><br>
<div id="cat2" style="display:none">
<a href="index.php?action=Adresse" target="_self"><font color="#97bf0e">Adresse</font></a><br>
</div>
<br>
</div>
</div>
<div id="Layer4">
<?php
include($content);
?>
</div>
<?php
switch ($_GET["action"])
{
case kontakt:
$content = "Fotos.html";
break;
case Impressum:
$content = "Kontakt.html";
break;
case Sitemap:
$content = "Sommer.html";
break;
case Downloads:
$content = "Adresse.html";
break;
}
?>
</body>
</html>
Ich hoffe ihr könnt mir helfen.