bafo
This commit is contained in:
parent
c529b88e94
commit
728c2d1c6d
2 changed files with 4 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="JustePrix.css" type="text/css">
|
||||
<script src="JustePrix.js"></script>
|
||||
<script src="JustePrix.js" defer></script>
|
||||
<html>
|
||||
<head>
|
||||
<title>JustePrix</title>
|
||||
|
@ -27,7 +27,7 @@
|
|||
<div id="BoiteNb" class="BoiteNb">
|
||||
<label for="Inp_Valeur"> Veuillez rentrer votre nombre</label>
|
||||
<input type="text" id="Inp_Valeur">
|
||||
<button name="btntent" id="btntent">Verification</button>
|
||||
<button name="btntent" id="btnver">Verification</button>
|
||||
</div>
|
||||
</main>
|
||||
<footer>© Copyright 2019 by ME. All Rights Reserved.</footer>
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
let NbJoueur= document.getElementById("Inp_Valeur");
|
||||
let Nb_a_Trouver = 5;
|
||||
|
||||
let btnver = document.getElementById("btntent");
|
||||
let btnver = document.getElementById("btnver");
|
||||
console.log(btnver);
|
||||
|
||||
btnver.addEventListener("click",Verif)
|
||||
|
||||
|
|
Loading…
Reference in a new issue