W swoim folderze roboczym utwórz dokument typy.html (wykorzystaj metodę kopiuj-wklej) zawierający następujący kod:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <title>Typy</title> </head> <body> </body> </html>
W elemencie body dopisz kod:
<script> document.write(typeof x) </script>
Zapisz dokument. Sprawdź działanie skryptu.
W elemencie script dopisz kod:
document.write(typeof true)
Zapisz dokument. Sprawdź działanie skryptu.
W elemencie script dopisz kod:
document.write(typeof "tekst")
Zapisz dokument. Sprawdź działanie skryptu.
W elemencie script dopisz kod:
document.write(typeof 1)
Zapisz dokument. Sprawdź działanie skryptu.
W elemencie script dopisz kod:
document.write(typeof [])
Zapisz dokument. Sprawdź działanie skryptu.
W elemencie script dopisz kod:
x=1 document.write(typeof x)
Zapisz dokument. Sprawdź działanie skryptu.
<script>typeof
- zwraca typ argumentu.
typeof argumentargument jest łańcuchem znaków, zmienną, słowem kluczowym lub obiektem, którego typ ma zostać zwrócony.
W elemencie body, przed elementem script, dopisz kod:
<input type="text" value="tekst" id="input1"/>
W elemencie script dopisz kod:
document.write(typeof input1.value)
Zapisz dokument. Sprawdź działanie skryptu.
W elemencie body, przed elementem script, dopisz kod:
<input type="number" value="1" id="input2"/>
W elemencie script dopisz kod:
document.write(typeof input2.value)
Zapisz dokument. Sprawdź działanie skryptu.
W elemencie body, przed elementem script, dopisz kod:
<p id="p1"> test2 </p>
W elemencie script dopisz kod:
document.write(typeof p1.innerHTML)
Zapisz dokument. Sprawdź działanie skryptu.
W elemencie script dopisz kod:
alert(typeof prompt("Wpisz tekst"))
Zapisz dokument. Sprawdź działanie skryptu.
Umieść pliki ćwiczeniowe na na serwerze.
<input type="text">
- pole tekstowe - typ String.<input type="number">
- pole liczbowe - typ String.<script>element.innerHTML
- typ String.<script>prompt()
- zwraca typ String.