Check characters form


/ Published in: JavaScript
Save to your folder(s)

Controllo sui caratteri nelle textboxes in Javascripts


Copy this code and paste it in your HTML
  1. //FUNZIONE CHE CONTROLLA i caratteri ammessi in una textbox
  2. function Check_char(ct){
  3. f=document.forms[0];
  4. el=f.elements;
  5.  
  6. el[ct].value = trim(el[ct].value);
  7.  
  8. reg_ex = /^([a-zàèéìòù]+['\s]?){1,}[a-zàèéìòù]$/ig
  9.  
  10. stringa = el[ct].value;
  11.  
  12. if( stringa.match(reg_ex))
  13. return true;
  14. else {
  15. alert("Attenzione!\nCarattere non ammesso nel campo "+ct+"\n\nSono consentiti solo lettere, spazi e apostrofi. Non sono ammessi:\n - numeri\n - caratteri speciali (es ?,@,_,*,+,-,/)\n - spazi prima e dopo gli apostrofi\n - doppio spazio o doppio apostrofo\n - apostrofo finale\n - spazi iniziali e finali");
  16. el[ct].focus();
  17. return false;
  18. }
  19.  
  20. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.