michaela: keine Wechselbuttonfunktion bei div-Tag mit Netscape

Beitrag lesen

Grüssi!

Hast du FAQ numero 10 schon gelesen?
http://www.teamone.de/selfaktuell/forum/faq/forumsfaq_4.htm#a10

Falls ja und es geht trotzdem nicht poste mal deine Javascript wechsel-Funktion!

lg bernhard

Hallo Bernhard,

FAQ numero 10 hatte ich auch schon gelesen und auch schon getestet, ging aber auch nicht. Hier also meine kompletter Quellcode, vielleicht weißt Du ja weiter?
Vielen Dank schon mal im voraus, Michaela

<html>
<head>
 <title>Unbenannt</title>
</head>

<script language="JavaScript">
<!--
  normal = new Image();
  normal.src = "../../bilder/Leiste_unten/Leitbild2.gif"; /* erste Standard-Grafik */
  highlight = new Image();
  highlight.src = "../../bilder/Leiste_unten/Leitbild1.gif"; /* erste Highlight-Grafik */

normal1 = new Image();
  normal1.src = "../../bilder/Leiste_unten/Team2.gif"; /* erste Standard-Grafik */
  highlight1 = new Image();
  highlight1.src = "../../bilder/Leiste_unten/Team1.gif"; /* erste Highlight-Grafik */

normal2 = new Image();
  normal2.src = "../../bilder/Leiste_unten/Kooperationen2.gif"; /* erste Standard-Grafik */
  highlight2 = new Image();
  highlight2.src = "../../bilder/Leiste_unten/Kooperationen1.gif"; /* erste Highlight-Grafik */

function Bildwechsel(Bildnr,Bildobjekt)
  {
   window.document.images[Bildnr].src = Bildobjekt.src;
  }

//Funktionen um zwei Frames gleichzeitig zu fuellen
function Leitbild()
{
 parent.unter_nav.location="../Leitbild/nav_leitbild.htm";
 parent.unter_text.location="../Leitbild/leitbild.htm";
}

function Team()
{
 parent.unter_nav.location="../Team/nav_team.htm";
 parent.unter_text.location="../Team/team.htm";
}

function Kooperation()
{
 parent.unter_nav.location="../Kooperationen/nav_koop.htm";
 parent.unter_text.location="../Kooperationen/kooperationen.htm";
}
//-->
</script>
</head>

<body bgcolor="#F9F8E3">

<div id="Layer1" style="position:absolute; width:68px; height:15px; z-index:1; top: 0px; left: 10px">
<img src="../../Bilder/Logo.gif" width="75" height="31"></div>

<!--Navigationsleiste Anfang-->
<div id="Layer2" style="position:absolute; width:119px; height:12px; z-index:2; left: 158px; top: 0px">
<a href="#"
onMouseOver="Bildwechsel(1, highlight);"
onmouseout="Bildwechsel(1, normal)";
onclick="Leitbild()">
<img src="../../bilder/Unternehmen/Leiste_unten/Leitbild2.gif" width=137 height=20 alt="" border="0"></a>
</div>

<div id="Layer3" style="position:absolute; width:62px; height:8px; z-index:3; left: 294px; top: 0px">
<a href="#"
onMouseOver="Bildwechsel(2, highlight1);"
onmouseout="Bildwechsel(2, normal1)";
onclick="Team()">
<img src="../../bilder/Unternehmen/Leiste_unten/Team2.gif" width=137 height=20 alt="" border="0"></a>
</div>

<div id="Layer4" style="position:absolute; width:90px; height:8px; z-index:4; left: 430px; top: 0px">
<img src="../../bilder/Unternehmen/Leiste_unten/Anlaufstellen1.gif" width=137 height=20 alt="" border="0">
</div>

<div id="Layer5" style="position:absolute; width:114px; height:11px; z-index:5; left: 566px; top: 0px">
<a href="#"
onMouseOver="Bildwechsel(4, highlight2);"
onmouseout="Bildwechsel(4, normal2)";
onclick="Kooperation()">
<img src="../../bilder/Unternehmen/Leiste_unten/Kooperationen2.gif" width=137 height=20 alt="" border="0"></a>
</div>
<!--Navigationsleiste Ende-->
</html>