Javascript - funktion

Eulenbaer

Grünschnabel
Folgendes.....ich hab in meine seite folgendes script reingebeut :

<script type = "text/javascript">

function hyperlinks(quelle)
{
switch (quelle)
{
case 0: parent.titel.location.href = "http://www.8ung.at/ndlrenegade/laubenlan/sitzplanschrift.html";
parent.hauptfenster.location.href = "http://www.8ung.at/ndlrenegade/laubenlan/sitzplan.html";
break;
case 1: parent.titel.location.href = "http://www.8ung.at/ndlrenegade/laubenlan/aktuelles.html";
parent.hauptfenster.location.href = "http://www.8ung.at/ndlrenegade/laubenlan/hnhabschlussbericht.html";
break;
case 2: parent.titel.location.href = "http://www.8ung.at/ndlrenegade/laubenlan/gaesteschrift.html";
parent.hauptfenster.location.href = "http://www.8ung.at/ndlrenegade/laubenlan/gaeste1.html";
break;
}
}

</script>


Das problem ist nun, dass die Seite, in der sich dieses script befindet durch die Seite, durch die sie aufgerufen wird, selbst in einen Frame geladen wird....

wie kann ich also trotz dieses Umstandes die Funktion nutzen??

thx im Voraus

ciao
 
Wenn ich dich richtig verstehe, Eulenbaer, dann sollte das ganze so funktionieren:
PHP:
<script type="text/javascript" language="JavaScript"> 
<!--
function hyperlinks(quelle) { 
    switch (quelle) { 
        case 0: top.frames["titel"].location.href = "http://www.8ung.at/ndlrenegade/laubenlan/sitzplanschrift.html"; 
                top.frames["hauptfenster"].location.href = "http://www.8ung.at/ndlrenegade/laubenlan/sitzplan.html"; 
                break; 
        case 1: top.frames["titel"].location.href = "http://www.8ung.at/ndlrenegade/laubenlan/aktuelles.html"; 
                top.frames["hauptfenster"].location.href = "http://www.8ung.at/ndlrenegade/laubenlan/hnhabschlussbericht.html"; 
                break; 
        case 2: top.frames["titel"].location.href = "http://www.8ung.at/ndlrenegade/laubenlan/gaesteschrift.html"; 
                top.frames["hauptfenster"].location.href = "http://www.8ung.at/ndlrenegade/laubenlan/gaeste1.html"; 
                break; 
    } 
}
//-->
</ script>
(</ script zusammen!)

Ansonsten fände ich's angebracht, nochmal irgendwie deutlicher zu schildern wie dein Seitenaufbau ist und worin das Problem besteht.

hth,
Geist
 

Neue Beiträge

Zurück