Antwort von
nach 31 Minuten
hilfreich
Re: PROBLEM!!!!
Hallo,
die Lösung heißt "JavaScript"
Hier ein Beispiel:
Frames Definieren:
<html>
<head>
<title>FrameTest</title>
</head>
1* <frameset cols="30%,*">
<frame src="verweise.htm">
<frameset rows="25%,*">
<frame src="welcome1.htm">
<frame src="welcome2.htm">
</frameset>
</frameset>
</html>
Inhalt des Frames verweise.htm
<html>
<head>
<title>Verwise</title>
<script language="JavaScript">
<!--
function ZweiFrames(URL1,F1,URL2,F2)
{
parent.frames[F1].location.href=URL1;
parent.frames[F2].location.href=URL2;
}
//-->
</script>
</head>
<body text=#000000 link=#0000CC vlink=#000099 alink=#0000FF>
<h1>Verweise</h1>
<a href="javascript:ZweiFrames('susan1.htm',1,'susan2.htm',2)">Susan Sarandon</a>
<br>
<a href="javascript:ZweiFrames('jack1.htm',1,'jack2.htm',2)">Jack Nicholson</a>
</body>
</html>
Quelle:
SelfHTML 7.0,
zum Download unter: http://www.freeware.de