meta données pour cette page
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<! DOCTYPE html> < html > < body > < p >débuggez-moi!!</ p > < button onclick = "maFonction()" >Allez-y!</ button > < p id = "afficheIci" ></ p > <script> function maFonction() { var randomVersion = Math.round(Math.random()+1); var resultat; console.log(randomVersion); if (randomVersion == 1) { var c = document.getElementById( "myCanvas" ); var contexte = c.getContext( "2d" ); contexte.moveTo(0,0); contexte.lineTo(200,100); contexte.stroke(); } else { resultat = "seconde fonction" ; } document.getElementById( "afficheIci" ).innerHTML = resultat; } </script> </ body > </ html > |