Verification d'un formulaire PHP
Fermé
Herozine
Messages postés
52
Date d'inscription
jeudi 19 juin 2014
Statut
Membre
Dernière intervention
17 avril 2015
-
25 janv. 2015 à 12:58
Herozine Messages postés 52 Date d'inscription jeudi 19 juin 2014 Statut Membre Dernière intervention 17 avril 2015 - 25 janv. 2015 à 19:45
Herozine Messages postés 52 Date d'inscription jeudi 19 juin 2014 Statut Membre Dernière intervention 17 avril 2015 - 25 janv. 2015 à 19:45
A voir également:
- Verification d'un formulaire PHP
- Formulaire de réclamation facebook - Guide
- Easy php - Télécharger - Divers Web & Internet
- Vérification url - Guide
- Formulaire instagram compte suspendu - Guide
- Le formulaire rempli - Guide
1 réponse
Zephirr
Messages postés
317
Date d'inscription
mardi 30 décembre 2014
Statut
Membre
Dernière intervention
6 novembre 2015
100
25 janv. 2015 à 15:06
25 janv. 2015 à 15:06
Un petit js:
<script> function verifEmail () { if(document.getElementById("email").value.length > 8) { document.getElementById("email").style.borderBottom = "solid Red 2px"; window.alert("sometext"); } } </script> <form action="index.html"> <div class="formL"> <div class="ax"> <div class="ax-input"> <input type="email" id="email" name="email" class="ax-input-text" oninput="verifEmail()"><img src="call.png"> </div> </div> </div> </form>
25 janv. 2015 à 16:53
25 janv. 2015 à 16:59
Voici tout le code :
25 janv. 2015 à 17:06
.
25 janv. 2015 à 17:20
Voici un code qui te conviendra plus :
25 janv. 2015 à 17:21