En son web geliştirme öğreticiler
 

JavaScript Window Location


window.location nesne geçerli sayfa adresini almak için kullanılabilir (URL) ve yeni bir sayfaya tarayıcıyı yeniden yönlendirmek için.


Window Location

window.location nesne pencere öneki olmadan yazılabilir.

Bazı örnekler:

  • window.location.href href döndürür (URL) geçerli sayfanın
  • window.location.hostname web barındırma alan adını döndürür
  • window.location.pathname Geçerli sayfanın yolunu ve dosya adını döndürür
  • window.location.protocol kullanılan web protokolü döndürür ( http:// or https:// )
  • window.location.assign yeni bir belge yükler

Window Location Href

window.location.href özellik geçerli sayfanın URL'sini döndürür.

Örnek

Href Display (URL) geçerli sayfanın:

document.getElementById("demo").innerHTML =
"Page location is " + window.location.href;

Sonuç ise:

Page location is http://admin.w3ii2.com/index.php?r=site%2Farticle%2Fupdate&clasId=6&path=js_window_location
Kendin dene "

Window Location Hostname

window.location.hostname mülkiyet internet konağın adını döndürür (of the current page) .

Örnek

konağın adını görüntüler:

document.getElementById("demo").innerHTML =
"Page hostname is " + window.location.hostname;

Sonuç ise:

Page hostname is admin.w3ii2.com
Kendin dene "

Window Location Pathname

window.location.pathname özellik geçerli sayfanın yol adını döndürür.

Örnek

Geçerli URL'nin yol adını görüntüler:

document.getElementById("demo").innerHTML =
"Page path is " + window.location.pathname;

Sonuç ise:

/index.php
Kendin dene "

Window Location Protocol

window.location.protocol özellik sayfasının web protokolünü döndürür.

Örnek

Web protokolünü gösterir:

document.getElementById("demo").innerHTML =
"Page protocol is " + window.location.protocol;

Sonuç ise:

Page protocol is http:
Kendin dene "

Window Location Assign

window.location. assign() window.location. assign() metodu yeni bir belge yükler.

Örnek

yeni bir belge yükleyin:

<html>
<head>
<script>
function newDoc() {
    window.location.assign("http://www.w3ii.com")
}
</script>
</head>
<body>

<input type="button" value="Load new document" onclick="newDoc()">

</body>
</html>
Kendin dene "