2009-09-16 8 views

Répondre

1
$(":text").keyup(function() { 
    if (this.value.match(/[^a-zA-Z0-9]/)) { 
     this.value = this.value.replace(/[^a-zA-Z0-9]/g, ''); 
    } 
}); 
+0

très aidant nick. Thaks –

Questions connexes