Est-il possible de limiter la taille du texte saisi dans un textarea ?

Est-il possible de limiter la taille du texte saisi dans un textarea ? - HTML/CSS - Programmation

Marsh Posté le 24-01-2003 à 09:56:14    

Bonjour à tous !!!!
 
existe-t-il une sorte de maxlength pour les textarea ?
 
 
 
Merci!

Reply

Marsh Posté le 24-01-2003 à 09:56:14   

Reply

Marsh Posté le 24-01-2003 à 10:00:17    

J'ai trouvé le meme topic un peu plus bas....
 
Désolé !!!

Reply

Marsh Posté le 24-01-2003 à 10:00:50    

Avec du javascript par exemple :
http://bobin.underlands.org/exemples/#id1

Reply

Marsh Posté le 09-08-2004 à 17:45:00    

le lien est mort , dommage
ils auraient du copier coller le dit code :(
 
upeu car je cherche à faire la meme; et , a part des trolls fort amusant [ http://forum.hardware.fr/forum2.ph [...] =0#t296293 ]
il n'y a toujours pas de reponse sur ce forum...
 
merci :jap:


---------------
La gravitation est démocratique - The Delight of Eternal Might
Reply

Marsh Posté le 09-08-2004 à 18:17:14    

bon je repond à moi meme pour ceux chercheront ça + tard
 

Code :
  1. <!-- TWO STEPS TO INSTALL LIMIT TEXTAREA:
  2.   1.  Copy the coding into the HEAD of your HTML document
  3.   2.  Add the last code into the BODY of your HTML document  -->
  4. <!-- STEP ONE: Paste this code into the HEAD of your HTML document  -->
  5. <HEAD>
  6. <SCRIPT LANGUAGE="JavaScript">
  7. <!-- Original:  Ronnie T. Moore -->
  8. <!-- Web Site:  The JavaScript Source -->
  9. <!-- Dynamic 'fix' by: Nannette Thacker -->
  10. <!-- Web Site: http://www.shiningstar.net -->
  11. <!-- This script and many more are available free online at -->
  12. <!-- The JavaScript Source!! http://javascript.internet.com -->
  13. <!-- Begin
  14. function textCounter(field, countfield, maxlimit) {
  15. if (field.value.length > maxlimit) // if too long...trim it!
  16. field.value = field.value.substring(0, maxlimit);
  17. // otherwise, update 'characters left' counter
  18. else
  19. countfield.value = maxlimit - field.value.length;
  20. }
  21. // End -->
  22. </script>
  23. </HEAD>
  24. <!-- STEP TWO: Copy this code into the BODY of your HTML document  -->
  25. <BODY>
  26. <!-- textCounter() parameters are:  text field, the count field, max length -->
  27. <center>
  28. <form name=myform action="YOUR-SCRIPT.CGI">
  29. <font size="1" face="arial, helvetica, sans-serif"> ( You may enter up to 125 characters. )<br>
  30. <textarea name=message wrap=physical cols=28 rows=4 onKeyDown="textCounter(this.form.message,this.form.remLen,125);" onKeyUp="textCounter(this.form.message,this.form.remLen,125);"></textarea>
  31. <br>
  32. <input readonly type=text name=remLen size=3 maxlength=3 value="125"> characters left</font>
  33. </form>
  34. </center>
  35. <p><center>
  36. <font face="arial, helvetica" SIZE="-2">Free JavaScripts provided<br>
  37. by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
  38. </center><p>
  39. <!-- Script Size:  1.37 KB -->


trouvé ici
http://javascript.internet.com/for [...] tarea.html


---------------
La gravitation est démocratique - The Delight of Eternal Might
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed