• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Hilfe bei Frame

Status
Für weitere Antworten geschlossen.

web673

Neues Mitglied
ich habe ein problem

ich habe eine frameseite gemacht und wenn ich dort im teil menü was öffne müsste es doch in das andere frame öffnen

anstatt dies zu tun öffnet sich das frame im gleichen fenster wo das menü steht
 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<base target="_content">
</head>
<frameset title="World of Warcraft Online Help" rows="135,*,38" framespacing="0" border="false" frameborder="0">
<frame name="TopBorder" src="Layout/TBorder.html" frameborder="0" marginheight="0" marginwidth="0" noresize="true" scrolling="no">
<frameset cols="48,250,10,*,35" framespacing="0" border="false" frameborder="0">
<frame name="Left" src="Layout/LBorder.html" frameborder="0" marginheight="0" marginwidth="0" noresize="true" scrolling="no">
<frame name="Topic" src="ReadMe/(PC)ReadMeMenu.html" frameborder="0" marginheight="0" marginwidth="0" noresize="" scrolling="no">
<frame name="CSpacer" src="Layout/CSpacer.html" frameborder="0" marginheight="0" marginwidth="0" noresize="true" scrolling="no">
<frame name="content" src="Layout/Greeting.html" frameborder="0" marginheight="0" marginwidth="0" noresize="true" scrolling="yes">
<frame name="Right" src="Layout/RBorder.html" frameborder="0" marginheight="0" marginwidth="0" noresize="true" scrolling="no">
</frameset>
<frame name="BSpacer" src="Layout/BSpacer.html" frameborder="0" marginheight="0" marginwidth="0" noresize="true" scrolling="no">
<noframes>
</noframes>
<script language="javascript">
var Platform = "PC";
if (navigator.userAgent.indexOf('Mac') != -1)
{
Platform = "Mac";
document.parent.Topic.location = "../ReadMe/(Mac)ReadMeMenu.html";
document.parent.content.location = "../ReadMe/(Mac)Foreword.html";
}
</script>
</frameset>
<frameset>
</frameset>
</html>

ist das f4rame (das frame (PC)ReadMeMenu.html ist das menü. wenn ich jetzt was öffne (link soll sich der in Layout/Greeting.html öffnen

thxi mal
 
wo sind denn die </frame> hin???

PS: Verwende HTML-Tags und erstell keine doppel/dreifachposts, sonst wirst du hier ganz schnell noch bestraft ^^ (nich von mir ^^)
 
klar:
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title>test</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <base target="_content">
 </head>
 <frameset title="World of Warcraft Online Help" rows="135,*,38" framespacing="0" border="false" frameborder="0">
  <frame name="TopBorder" src="Layout/TBorder.html" frameborder="0" marginheight="0" marginwidth="0" noresize="true" scrolling="no"></frame>
  <frameset cols="48,250,10,*,35" framespacing="0" border="false" frameborder="0">
   <frame name="Left" src="Layout/LBorder.html" frameborder="0" marginheight="0" marginwidth="0" noresize="true" scrolling="no"></frame>
   <frame name="Topic" src="ReadMe/(PC)ReadMeMenu.html" frameborder="0" marginheight="0" marginwidth="0" noresize="" scrolling="no"></frame>
   <frame name="CSpacer" src="Layout/CSpacer.html" frameborder="0" marginheight="0" marginwidth="0" noresize="true" scrolling="no"></frame>
   <frame name="content" src="Layout/Greeting.html" frameborder="0" marginheight="0" marginwidth="0" noresize="true" scrolling="yes"></frame>
   <frame name="Right" src="Layout/RBorder.html" frameborder="0" marginheight="0" marginwidth="0" noresize="true" scrolling="no"></frame>
  </frameset>
  <frame name="BSpacer" src="Layout/BSpacer.html" frameborder="0" marginheight="0" marginwidth="0" noresize="true" scrolling="no"></frame>
 <frameset>
 <noframes>
  Ihr browser unterstützt keine Frames. Bitte benutzen sie einen anderen Browser oder führen sie ein Upgrade ihres Browsers durch
 </noframes>
 <script language="javascript">
  var Platform = "PC";
  if (navigator.userAgent.indexOf('Mac') != -1)
  {
    Platform = "Mac";
    document.parent.Topic.location = "../ReadMe/(Mac)ReadMeMenu.html";
    document.parent.content.location = "../ReadMe/(Mac)Foreword.html";
  }
 </script> 
</html>
 
hi und danke Frank
ich habe es selber herausgefunden

man muss den link markieren dann auf hyperlinkeigenschaften dann rechts unten auf zielframe ändern und dann auf dem bild (das kleine) den beliebigen frame auswählen. dann einfach ok und schon funktionierts
 
Zuletzt bearbeitet:
Status
Für weitere Antworten geschlossen.
Zurück
Oben