Fungsi Javascript Terkait Nama Domain, Url, Hostname dan Port

Megetahui hash url

1
window.location.hash

output : #2

Mengetahui host

1
window.location.hostname

output : localhost

Mengambil host dan port

1
window.location.host

output : localhost:4200

Mengambil full url

1
window.location.href

output : http://localhost:4200/landing?query=1#2

Mengambil origin url

1
window.location.origin

output : http://localhost:4200

Mengambil port yang digunakan

1
window.location.port

output : 4200

Mengambil protocol yang digunakan

1
window.location.protocol

output : http:​

Mengambil lokasi pencarian

1
window.location.search

output : ?query=1​

Mengambil path name

1
window.location.pathname

output : /landing

comments powered by Disqus