Forum de discussion
Forum « Programmation HTML » (archives)
Re: liens vers une cellule d'un tableau
Envoyé: 24 décembre 2003, 9h34 par Oznog
Oui, c'est possible! Mais c'est toute une entreprise bourré d'astuce tordues.
Alors avant de se pencher là dessus, j'aimerais savoir pourquoi?
Mais aussi parceque tu peux simplement utiliser un "iFrame" et un "target" sur tes hyperliens qui cible le bon "iFrame".
<html>
<head>
<title>Trucsweeb.com - iFrame</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
|