Foros del Web » Programando para Internet » Javascript »

Funcion con Input Text

Estas en el tema de Funcion con Input Text en el foro de Javascript en Foros del Web. Hola amigos, Estoy trabajando con html y tengo un input text en el cual el usuario debe ingresar su email, deseo hacer una funcion que ...
  #1 (permalink)  
Antiguo 25/07/2002, 13:39
 
Fecha de Ingreso: enero-2002
Mensajes: 49
Antigüedad: 23 años
Puntos: 0
Funcion con Input Text

Hola amigos,

Estoy trabajando con html y tengo un input text en el cual el usuario debe ingresar su email, deseo hacer una funcion que se gane en text se borre el contenido pero solo una vez.

<input name="dir_email" type="text" maxlength="35" size="35" value="[email protected]">

y al presionar en text se borre la informacion y el pueda ingresar su email.
  #2 (permalink)  
Antiguo 25/07/2002, 13:46
Avatar de AlZuwaga
Colaborador
 
Fecha de Ingreso: febrero-2001
Ubicación: 34.517 S, 58.500 O
Mensajes: 14.550
Antigüedad: 23 años, 11 meses
Puntos: 535
Re: Funcion con Input Text

movido desde el foro ASP
  #3 (permalink)  
Antiguo 25/07/2002, 14:48
 
Fecha de Ingreso: mayo-2002
Mensajes: 12
Antigüedad: 22 años, 8 meses
Puntos: 0
Re: Funcion con Input Text

Esto lo saque de un ejemplo, espero que te sirva:
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}
</script>
</head>

<body bgcolor="#ffff99">
<center>
muestra un texto inicial, y lo elimina al recibir el foco
<form>
<input type="text" value="pon aquí tu nombre" onFocus="clearText(this)">
  #4 (permalink)  
Antiguo 26/07/2002, 00:09
Usuario no validado
 
Fecha de Ingreso: julio-2001
Mensajes: 766
Antigüedad: 23 años, 5 meses
Puntos: 0
Re: Funcion con Input Text

y esta es una pequeña modificasion al script anterios haber si te gusta

<script language="Javascript">
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
else if(thefield.value=="")
thefield.value = thefield.defaultValue
}
</script>
</script>



<center>
muestra un texto inicial, y lo elimina al recibir el foco
<form>
<input type="text" value="pon aquí tu nombre" onBlur="clearText(this)" onFocus="clearText(this)">
</form>
</center>

<center><hr size="1" width="100%" noshade><a href=javascript:MsgrApp.LaunchIMUI('gpa36@hotmail. com')>
<strong><font face="courier new" color="#666666" size="2">Contact Me?[/CODE]</strong>
<IMG SRC="http://woertman.org:8080/msn/gpa36" border="0"></A></ce
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 01:38.