Browse Source

Transférer les fichiers vers ''

master
CHASSAGNOL Bruno 3 years ago
parent
commit
3038ffe25f
  1. 23
      projetjavascript.html

23
projetjavascript.html

@ -1,24 +1,29 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<body> <body>
<input type="text" id="name" required
minlength="4" maxlength="8" size="10">
<button onclick="lancement()">lance le jeu</button>
<script>
var jeton_bac=1000;
var jeton_joueur=99;
function lancement() {
var nb_jet = document.getElementById("name").value;
if (jeton_joueur > nb_jet && jeton_bac > 500 && nb_jet < 100 && nb_jet> 0){document.write(11);}
else{document.write("tu as mis trop de jetons");}
}
</script>
<script> <script>
var jeton_jac=1000;
var jeton_joueur=100;
function myFunction() {
var x = document.getElementById("name").value;
document.write(x);}
function nbAlea(){ function nbAlea(){
const cars = [Math.floor(Math.random() * 10) , const cars = [Math.floor(Math.random() * 10) ,
Math.floor(Math.random() * 10) , Math.floor(Math.random() * 10) ,
Math.floor(Math.random() * 10) ]; Math.floor(Math.random() * 10) ];
document.write(cars); document.write(cars);
} }
nbAlea() nbAlea();
</script> </script>
<button onclick="myFunction()">Validé</button>
<input type="text" id="name" required
minlength="4" maxlength="8" size="10">
</body> </body>
</html> </html>

Loading…
Cancel
Save