Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/04/2007, 16:56
Sugey
 
Fecha de Ingreso: mayo-2006
Mensajes: 215
Antigüedad: 18 años
Puntos: 0
Ayuda con mi menu y su comportamiento onclick !!

Hola tengo un menu de botones, en los que necesito que por cada click en el boton, se refresque y se ponga el numero de boton en la url, pero tambien quiero que si presione el boton 5, la url se cambie y el boton se quede de otro color, y asi para cuando clickee otro boton. Que se distinga q boton esta seleccionado, segun el numero q esta en la url.

Me explico?, este es mi codigo, pero no me keda :(

<html>
<head>
<link href="css/style.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Probando menu</title>
</head>
<script type="text/javascript">
var activo = null;
function marcar(obj) {
obj.style.background = 'green';
if (activo) activo.style.background = 'red';
activo = obj;
}
</script>
<body>
<form name="form1" method="post" action="">
<div id ="menu" border="none">

<!-- <br> --> <!--Es el espacio que se le da entrelos botones y la imagen...-->
<br>
<dl> <dt>
<input type="button" name="1" onclick="marcar(this); location='menuhtml.php?senales=1&centrales=4&centr al=1'" value="27 DE SEPTIEMBRE"/>
</dt></dl>
<dl> <dt>
<input type="button" name="2" onclick="marcar(this); location='menuhtml.php?senales=1&centrales=4&centr al=2'" value="CH. LUIS DONALDO COLOSIO MURIETA"/>
</dt></dl>
<dl> <dt>
<input type="button" name="3" onClick="marcar(this); location='menuhtml.php?senales=1&centrales=4&centr al=3'" value="CH. PRESIDENTE PLUTARCO ELÍAS CALLES"/>
</dt></dl>
<dl><dt>
<input type="button" name="4" onclick="marcar(this); location='menuhtml.php?senales=1&centrales=4&centr al=4'" value="CH. OVIÁCHIC"/>
</dt></dl>
<dl><dt>
<input type="button" name="5" onClick="marcar(this); location='menuhtml.php?senales=1&centrales=4&centr al=5'" value="CH. MOCÚZARI"/>
</dt></dl>
<dl><dt>
<input type="button" name="6" onClick="marcar(this); location='menuhtml.php?senales=1&centrales=4&centr al=6'" value="CH. BACURATO"/>
</dt></dl>
<dl><dt>
<input type="button" name="7" onclick="marcar(this); location='menuhtml.php?senales=1&centrales=4&centr al=7'" value="CH. HUMAYA"/>
</dt></dl>
<dl><dt>
<input type="button" name="8" onclick="marcar(this); location='menuhtml.php?senales=1&centrales=4&centr al=8'" value="CH. GRAL. SALVADOR ALVARADO"/>
</dt></dl>
<dl> <dt>
<input type="button" name="9" onclick="marcar(this); location='menuhtml.php?senales=1&centrales=4&centr al=9'" value="CH. PROF. RAUL J. MARSAL"/>
</dt></dl>
</div>
<br><br>
</body>
</html>