appliquer une fonction js a toutes balises input

appliquer une fonction js a toutes balises input - HTML/CSS - Programmation

Marsh Posté le 01-04-2007 à 23:01:41    

bonjour,  
 
je voudrais appliquer une fonction javascript a toutes les balises de mon formulaire, comment je peux faire ?

Code :
  1. function Chiffre(txt) {
  2.     if (!/^[\d\.]+$/.test(txt.value) || isNaN(txt.value)) {
  3.         txt.value = txt.value.substring(0,txt.value.length-1);
  4.     }
  5. }
  6. <input type="text" onkeyup="Chiffre(this);">


 
 
sauf que j'ai deux cent <input..> a la suite je voudrais pouvoir les mettres tous automatiquement sans mettre onkeyup partout !!!
je fais comment ????
 
tanks

Reply

Marsh Posté le 01-04-2007 à 23:01:41   

Reply

Marsh Posté le 01-04-2007 à 23:21:09    

T'as getElementByTagName() , après niveau perf...


---------------
Mains power can kill, and it will hurt the entire time you’re dying from it.
Reply

Marsh Posté le 03-04-2007 à 12:45:10    

Reply

Marsh Posté le 03-04-2007 à 12:46:49    


:jap:


---------------
Mains power can kill, and it will hurt the entire time you’re dying from it.
Reply

Sujets relatifs:

Leave a Replay

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