| |||
con el textarea, como saber cuatas letras lleva Deseo saber como puedo presentarle a los usuarios cuantos caracteres esta escribiendo en un textarea y limitarlo a un numero determinado. Gracias |
| |||
Re: con el textarea, como saber cuatas letras lleva Lo que ocupas se puede hacer con varias tecnolog[ias, te recomiendo un java, el mismo que usan el los foros para contar los caracteres que escribes, buscalo en http://www.shiningstar.net/ bay. Pura Vida! ;) |
| |||
Re: con el textarea, como saber cuatas letras lleva Hola a todos!, a mí no me va en Netscape como dice eloi, intenta probar kon este código wtellez, en el kaso de k no te funcione: <html> <head> <title>Contar caracteres</title> <script LANGUAGE="JavaScript"> <!-- function textCounter(field, countfield, maxlimit) { if (field.value.length > maxlimit) field.value = field.value.substring(0, maxlimit); else countfield.value = maxlimit - field.value.length; } // --> </script> </head> <body> <form name="myform" action="YOUR-SCRIPT.CGI"> <p>(El límite es de 125 caracteres)<br> <textarea name="message" wrap="physical" cols="28" rows="4" onKeyDown="textCounter(this.form.message,this .form.remLen,125);" onKeyUp="textCounter(this.form.message,this.f orm.remLen,125);"></textarea> <br> <input readonly type="text" name="remLen" size="3" maxlength="3" value="125"> caracteres</p> </form> </body> </html> <div align="center"><img src="http://www.visicom.teaser.fr/gograph/Images-8712/ClipArt/buttrfly.gif" border=0><BR><font size="-2" >...:: MALAKAI ::...</FONT></div> |