Problème de target avec proccedure js

Problème de target avec proccedure js - HTML/CSS - Programmation

Marsh Posté le 08-03-2003 à 18:40:30    

Voilà c'est tout bête, j'ai crée une fenêtre principale avec deux frames.
Dans la première j'ai mis un menu déroulant ou je selectionne une tâche en pointant sur une nouvelle page html en spécifiant quel doit s'afficher dans la deuxième frame. Et la gros bug  
Achaque chargement il ne tient pas compte des frames au chargement, je ne pige pas
 
Index
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="15%,85%" frameborder="NO" border="0" framespacing="0">
  <frame src="topframe.htm" name="_top" scrolling="NO" noresize id="_top" >
  <frame src="mainframewelcome.htm" name="_main" id="_main">
</frameset><noframes></noframes>
<body>
</body>
</html>
top frame
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Top Frame</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<base target="_main">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'" );
  if (restore) selObj.selectedIndex=0;
}
//-->
</script>
</head>
<body background="fond/fond.jpg" text="#000000" link="#000000" vlink="#000000" alink="#000000">
<form name="form1">
  <select name="menu1" onChange="MM_jumpMenu('parent',this,0)">
    <option value="MainframeWelcome.htm" selected>Index</option>
    <option value="MainframeWelcome.htm">Afficher</option>
    <option value="Mainframeenregistrercontact.htm">Ajouter</option>
    <option value="MainframeWelcome.htm">Modifier</option>
    <option value="MainframeWelcome.htm">Supprimer</option>
  </select>
</form>
<p> </p>
</body>
</html>
 

Reply

Marsh Posté le 08-03-2003 à 18:40:30   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed