Advertisement
Guest User

Untitled

a guest
May 21st, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <title>ustawienie parametrów znacznika body</title>
  5. <meta charset="UTF-8">
  6. <link rel="stylesheet" href="style_2.css">
  7. </head>
  8. <body>
  9. jjjj<br>
  10. <script>
  11. document.write("tekst wypisany w jezyku js. Ta instrukcja jest analogiczna do instrukcji cout języka c++");
  12. </script>
  13. <h2>okno dialogowe alert</h2>
  14. <script>
  15. alert("teskt do wyswietlenia. Wchodzisz na stronę na swoją odpowiedzialność");
  16. document.write("<br>po wyswietleniu okna dialogowego");
  17. </script>
  18. <h3>okno dialogowe confirm</h3>
  19. <script>
  20. var a=confirm("Kliknij guzik:");
  21. if(a==true) document.write("wybrano ok")
  22. else document.write("wybrano inną opcje")
  23. </script>
  24. <h3>okno dialogowe prompt</h3>
  25. <script>
  26. var p=prompt("podaj swoje imię");
  27. document.write("Witaj "+p+" na mojej stronie");
  28. n=prompt("Podaj liczbę naturalną dodatnią");
  29. for(i=0; i<=n; i++){
  30. document.write(" "+i);
  31. }
  32. </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement