Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>LastworkUdeM</title>
  5. <meta charset="utf-8">
  6. <script type="text/javascript">
  7. function mademoisellemonsieur() {
  8. var trusex;
  9. if (sexetap===feminin)
  10. trusex="F";
  11. else
  12. trusex="M";
  13.  
  14. document.getElementById('ici').innerHTML="Bonjour connard, tu as "+age+" ans et ton sexe est "+trusex;
  15.  
  16. }
  17. </script>
  18. </head>
  19. <body>
  20. <script type="text/javascript">
  21. //écrit ce qui est entré dans la page
  22. var age=prompt("Tu as quel âge?","55");
  23. window.sexetap=prompt("C'est quoi ton sexe sans accent ni espaces?");
  24. document.writeln("Bonjour connard, tu as "+age+" ans et ton sexe est_____.");
  25. </script>
  26. <p id="ici">Ceci est un paragraphe</p>
  27. <button onclick="mademoisellemonsieur()">Ici</button>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement