Forum de discussion
Forum « Programmation Javascript » (archives)
Re: insertion d'une page dans une cellule html avec iFrame
Envoyé: 17 juin 2005, 7h39 par Oznog
bendev a une très bonne solution qui permet beaucoup de flexibilité.
Pour une solution plus simple, il suffit d'un simble hyperlien conventionnel en ciblan (target) le cadre (iFrame).
<html>
<head>
<title>Trucsweb - iFrame dynamique</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF">
<table border="2" cellspacing="5" cellpadding="0" align="center">
<tr><td width="300"><a href="http://www.google.com" target="Espace1">Espace #1</a></td><td width="300"><a href="http://www.google.com" target="Espace2">Espace #2</a></td></tr>
<tr>
<td width="300"><iframe src="about:blank" name="Espace1" width="300" height="400" frameborder="0" border="0"></iframe></td>
<td width="300"><iframe src="about:blank" name="Espace2" width="300" height="400" frameborder="0" border="0"></iframe></td>
</tr>
</table>
</body>
</html>
Ciao
Oznog
Réponses
|