[Javascript] Addition de variable input
Résolu/Fermé
A voir également:
- [Javascript] Addition de variable input
- Formule excel addition - Guide
- Telecharger javascript - Télécharger - Langages
- Input not supported - Forum Ecran
- Input signal not found ✓ - Forum Matériel & Système
1 réponse
adns
Messages postés
1094
Date d'inscription
vendredi 23 février 2007
Statut
Membre
Dernière intervention
27 mars 2012
153
21 juil. 2011 à 13:35
21 juil. 2011 à 13:35
Bonjour,
il faut que tu précise en quelle base parseInt doit convertir la chaine de caractère passée en paramètre pour eviter tout problème avec les 0 devant tes nombres
exemple
Valeurs :
10
10
34
60
40
NaN
10
8
8
16
16
Source : https://www.w3schools.com/jsref/jsref_parseInt.asp
Adns
il faut que tu précise en quelle base parseInt doit convertir la chaine de caractère passée en paramètre pour eviter tout problème avec les 0 devant tes nombres
exemple
<script type="text/javascript"> document.write(parseInt("10") + "<br />"); document.write(parseInt("10.33") + "<br />"); document.write(parseInt("34 45 66") + "<br />"); document.write(parseInt(" 60 ") + "<br />"); document.write(parseInt("40 years") + "<br />"); document.write(parseInt("He was 40") + "<br />"); document.write("<br />"); document.write(parseInt("10",10)+ "<br />"); document.write(parseInt("010")+ "<br />"); document.write(parseInt("10",8)+ "<br />"); document.write(parseInt("0x10")+ "<br />"); document.write(parseInt("10",16)+ "<br />"); </script>
Valeurs :
10
10
34
60
40
NaN
10
8
8
16
16
Source : https://www.w3schools.com/jsref/jsref_parseInt.asp
Adns
21 juil. 2011 à 13:58
Un grand merci à toi
Sujet résolu =)