luckyduck Posté 17 Octobre 2007 Posté 17 Octobre 2007 bonjour j'ai un menu javascript inséré dans un div entête et le sontenu censé s'affiché dans un div main. Le problème est que le sous-menu de mon script n'est pas cliquable. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>titre</title> <link rel="stylesheet" href="template.css"> <script language="JavaScript" src="menu_files/menu.js"></script> <script language="JavaScript" src="menu_files/items.js"></script> <script language="JavaScript" src="menu_files/template.js"></script><style type="text/css"><!--pre {white-space:pre}#header {background:#ffcc33}/*******************************************************************/body {min-width:640px}/* MSIE display:inline-block is to make sure MSIE doesn't paint the backround above the containers, the overflow declaration is to make sure the containers do not drop below siblings if content pushes the width (in modern browsers it doesn't drop, but it spawns an orizontal scrollbar) */#container {padding:5px;}#header {}#header {overflow:hidden;display:inline-block}#header {width:100%} /* safari and opera need this */#content {float:left}#content {width: 100%; height: 800px;overflow: auto; }--></style></head><body><div id="container"><div id="header"><script language="JavaScript"> <!-- new menu (MENU_ITEMS0, MENU_POS0); //--> </script></div><div id="content"><?php// On définit le tableau contenant les pages autorisées// ----------------------------------------------------$pageOK = array('film.php' => 'film.php','main.php' => 'main.php');// On teste que le paramètre d'url existe et qu'il est bien autorisé// -----------------------------------------------------------------if ( (isset($_GET['page'])) && (isset($pageOK[$_GET['page']])) ) {include($pageOK[$_GET['page']]); // Nous appelons le contenu central de la page} else {include('main.php'); // Page par défaut quant elle n'existe pas dans le tableau}?></div><div></div></div></body></html> le menu utilisé est Softcomplex tigra merci pour votre aide
Sujets conseillés
Veuillez vous connecter pour commenter
Vous pourrez laisser un commentaire après vous êtes connecté.
Connectez-vous maintenant