in Frame verlinken bzw. navigieren

messmar

Erfahrenes Mitglied
Hallo zusameen,

ich habe folgendes Script, um in einem Frame zu navigieren bzw. jedesmal die nächste Seite aufzurufen. Es funktioniert aber leider nicht.

Das ist doch zu simple und sollte ohne große mühe gelöst werden. Ich bekomme es aber nicht hin. Irgendwie klappt nichts bei mir heute ;-(

Kann jemand mir ibtte helfen ?

Danke + Gruß

Amin

<script language="Javascript">

function surfto() {
if (parent.content.location.href=="main_00.htm")
{
parent.content.location.href="main_01.htm"
}
if (parent.content.location.href=="main_01.htm")
{
parent.content.location.href="main_02.htm"
}
if (parent.content.location.href=="main_02.htm")
{
parent.content.location.href="main_03.htm"
}
if (parent.content.location.href=="main_03.htm")
{
parent.content.location.href="main_04.htm"
}
if (parent.content.location.href=="main_04.htm")
{
parent.content.location.href="main_05.htm"
}

}
</script>

<a href="javascript:surfto()";>test</a>
 
"location.href" beinhaltet nicht den Dateinamen, sondern den kompletten Pfad zu dieser Datei.... weswegen alle deine Abfragen nie true sein können.
 

Neue Beiträge

Zurück