A voir également:
- Java script
- Jeux java itel - Télécharger - Jeux vidéo
- Waptrick java football - Télécharger - Jeux vidéo
- Waptrick java voiture - Télécharger - Jeux vidéo
- Java apk - Télécharger - Langages
- Waptrick java bible - Forum Téléchargement
1 réponse
bonjour,
tiens voila un code qui devrais te correspondre.
Là j'ai supposé que ton input a testé a pour id="id_5", mais tu modifi en fonction de ton code.
Alors s'il y a un problème, je vide le contenu de l'input, et j'affiche "problème",
sinon, si tout est ok, j'affiche "ok".
a adapter selon tes besoins.
tiens voila un code qui devrais te correspondre.
Là j'ai supposé que ton input a testé a pour id="id_5", mais tu modifi en fonction de ton code.
Alors s'il y a un problème, je vide le contenu de l'input, et j'affiche "problème",
sinon, si tout est ok, j'affiche "ok".
a adapter selon tes besoins.
function valide_int()
{
var chaine = document.getElementById("id_5").value;
var verif = /^[+0-9]{8,}$/
if (verif.exec(chaine) == null)
{
alert("Problème");
document.getElementById("id_5").value = "";
}
else
{
alert("ok");
}
}