- <!DOCTYPE html>
- <html>
- <head>
- </head>
- <body onload="ustawTlo()">
- <script>
- var kolory = ["red", "blue", "green"];
- var losowaLiczba = Math.round(Math.random() *(2-0)+0 );
- var wybranyKolor = kolory[losowaLiczba];
- function ustawTlo() {
- document.body.style.backgroundColor = wybranyKolor;
- }
- function oblicz() {
- var x = document.getElementById("x").value;
- if (isNaN(x) || x == 0) {
- alert("Popraw dane! Podaj liczbę dodatnią różną od zera.");
- } else {
- var y = 1/x;
- alert("Wartość y wynosi: " + y);
- }
- }
- </script>
- <form>
- <input type="text" id="x" name="x">
- <br>
- <input type="button" value="y=1/x" onclick="oblicz()">
- </form>
- </body>
- </html>
Raw Paste