Tytuł: Zadanie 26_10_2018 Wiadomość wysłana przez: admin Październik 26, 2018, 08:33:08 -----------------------------------HTML------------------------------------------------
<html><head><meta charset="UTF-8"> <link rel="stylesheet" href="adam_div.css"></head> <body> <div class="pudlo"><div class="radio"></div> <div class="radzio"> Dane: <br> <br><input type="text" id="imie2" value=""><br><br> <br><input type="text" id="nazwisko2" value=""><br><br> <br><input type="text" id="wiek2" value=""><br><br> </div> <div class="radzio1"><br> Imie: <input type="text" id="imie" value=""><br><br> Nazwisko: <input type="text" id="nazwisko" ><br><br> Rok urodzenia: <input type="text" id="weronika" > <br><br><input type="button" onclick="czysc()" value="Kasuj" id="A5"> <input type="button" onclick="czytaj()" value="Wpisz" id="A5"><br> <script> function czytaj(){ var im=document.getElementById("imie").value; var nazw=document.getElementById("nazwisko").value; var rok=document.getElementById("weronika").value; var iml=im.length-1; var w,y; y=parseInt(rok); w=2018-y; document.getElementById("imie2").value="Imie "+im+" liczba="+iml; document.getElementById("nazwisko2").value= "Nazwisko: "+nazw; document.getElementById("wiek2").value="Wiek: "+w; } function czysc(){document.getElementById("imie").value=" "; document.getElementById("nazwisko").value=" "; document.getElementById("weronika").value=" "; document.getElementById("imie2").value=" "; document.getElementById("nazwisko2").value=" "; document.getElementById("wiek2").value=" "; } </script></div> <div class="radzio2"><p id="rr"></p></div> <div class="stopka"> stopka</div> </div></body></html> ---------------------------------CSS------------------------------------------------- -------------------nazwa pliku: adam_div.css ---------------------------------------------------- .pudlo { background-color:#FFAA00; width:800px; height:600px} .radio { float: left; width:800px; height:50px; background-color:#aaaaaa } .radzio { float: left; width:200px; height: 500px; background-color: #FFAAAA } .radzio1 { float: left; width:400px; height: 500px; background-color: #00ff00 } .radzio2 { float: left; width:200px; height: 500px; background-color: #ffaaff } .stopka { float: left; width:800px; height: 50px; background-color: #AAAAff } |