Ich hab gestern das selbe problem gehabt, zund mich ein bischen damit gespielt:
Frames:
oben, links, mitte, rechts, unten.
mitte lädt beim Aufruf menues in die anderen vier Frames.
Sourcecode:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel=stylesheet type="text/css" href="../style.css">
<title></title>
<script language="JavaScript">
<!--
function menue_anzeigen()
{
parent.oben.location.href="menu/oben.html";
parent.links.location.href="menu/links.html";
parent.rechts.location.href="menu/rechts.html";
parent.unten.location.href="menu/unten.html";
}
//-->
</script>
</head>
<body onload="menue_anzeigen()">
</body>
</html>
Wenn du es noch nicht mit php oder sonst was programmiert hast, müßte es auch so gehen.
Aja die frameset definitionen sind:
<frameset rows="*,300,* border="0" frameborder="0" framespacing="0">
<frame src="leer.html" name="oben" scrolling="no" marginwidth="0" marginheight="0">
<frameset cols="*,640,* border="0" frameborder="0" framespacing="0">
<frame src="leer.html" name="links" scrolling="no" marginwidth="0" marginheight="0">
<frame src="start.html" name="mitte" scrolling="auto" marginwidth="0" marginheight="0">
<frame src="leer.html" name="rechts" scrolling="no" marginwidth="0" marginheight="0">
</frameset>
<frame src="leer.html" name="unten" scrolling="no" marginwidth="0" marginheight="0">
</frameset>
Jak
edit: Ich habs nur auf IE 5.5 überprüft, ob das bei anderen Browsern auch geht weiß ich nicht.
____________________________________
Join the DNRC | Godwin\'s Law (thx@stona)
Documentation is like sex: If it\'s good, it\'s very, very good. If it\'s bad, it\'s better than nothing.
\"In theory, theory and practice are the same. In practice, they are not\" (Lawrence Berra)
|