30/05/2008, 03:31
|
| Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 23 años, 1 mes Puntos: 61 | |
Respuesta: Autocompletar Así?
Código:
<html>
<head>
<title>Untitled</title>
<script>
function anadir(esto){
f=document.forms['pepe'];
if(f['campo'].value.indexOf(esto)==-1){
f['campo'].value+=(f['campo'].value!="")?",":"";
f['campo'].value+=esto;
}
else{
alert("Esa opcion ya esta");
}
}
</script>
</head>
<body>
<a href="futbol" onclick="anadir(this.innerHTML);return false">Futbol</a> <a href="basket" onclick="anadir(this.innerHTML);return false">Baloncesto</a> <a href="Hockey" onclick="anadir(this.innerHTML);return false">Hockey</a><br />
<br />
<form action="destino" id="pepe" name="pepe" method="post">
<input type="text" name="campo" size="100" />
</form>
</body>
</html>
__________________ Cómo escribir
No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |