Srxon05

SKprva_vezba.html

Dec 19th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.09 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script>
  4. var p=0;
  5. function obavestenje(){
  6. if(confirm('Napon je izmeren'))
  7.     p=1;
  8.     window.history.back();
  9. }
  10. function zabrana(){
  11. if (p!=1) alert('Prvo izmeri napon');
  12. document.getElementById("nes").addEventListener("click", function(event){
  13.     event.preventDefault()});
  14. }
  15. if(p==1){
  16. document.getElementById("nes").addEventListener("click", function(event){
  17.     return true;
  18. })
  19. </script>
  20. </head>
  21. <body>
  22.     <style>
  23.             .main-container {
  24.                 margin:0 auto;
  25.                 text-align:center;
  26.                 padding-top:20%;
  27.                 width:85%;
  28.                 float:center;
  29.                 color:gray;
  30.                 }
  31.             .mali {
  32.                 margin: 0 auto;
  33.            
  34.                 width:50%;
  35.                 text-align: center;
  36.                 }
  37.             hr{
  38.                 width:80%;}
  39.            
  40.         </style>
  41. <big><big>
  42. <div class="main-container">
  43. <h1><b><u>Prva vezba</u><b></h1>
  44. <h2>Merenje struje</h2>
  45. <form><input type="submit" value="Izmeri struju" OnClick="obavestenje()"></form>
  46.  
  47.  
  48. <form action="/vezba1V" id="nes"><input type="submit" value="Merenje napona" OnClick="zabrana()"></form>
  49.  
  50.  
  51. <form action="/nazad"><input type="submit" value="Vrati se nazad"></form>
  52. </div></big></big>
  53. </body>
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment