Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Dummy file</title>
  4. <!-- CSS stilizavimas -->
  5. <style>
  6. #mygtukas {
  7. border-style: solid;
  8. border-color: #000000;
  9. border-width: 1px;
  10. background: #FFFFFF;
  11. color: #000000;
  12. }
  13. </style>
  14.  
  15. <!-- Interaktyvumas -->
  16. <script>
  17. window.addEventListener('load', function () {
  18. var text = document.getElementById("inputas");
  19. document.getElementById("mygtukas").addEventListener('click', function () {
  20. alert(text.value);
  21. });
  22. });
  23. </script>
  24. </head>
  25. <body>
  26. <button id="mygtukas">Paspausk mane</button>
  27. <input type="text" id="inputas" value="">
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement