Emplacement de la fenêtre JavaScript



L'objet window.location permet d'obtenir l'adresse (URL) de la page actuelle et de rediriger le navigateur vers la nouvelle page. L'objet


Window Location

window.location peut être écrit sans utiliser le préfixe window. Quelques exemples :

Quelques exemples :

  • location.hostname renvoie le nom de domaine de l'hébergeur Web

  • location.pathname renvoie la page actuelle Le chemin et le nom du fichier du protocole (http:// ou https://)

  • Window Location Href
  • propriété location.href renvoie l'URL de la page actuelle.

  • Instance

Renvoie l'URL complète (de la page actuelle) :

<script>

document.write(location.href );

</script>

La sortie du code ci-dessus est :



http://www.php.cn/js /js-window- location.html

Window Location Pathname
la propriété location.pathname renvoie le chemin d'accès de l'URL.

Instance

Renvoie le nom du chemin de l'URL actuelle :

<script>

document.write(location.pathname);

</script>

La sortie du code ci-dessus est :



/js/js-window-location.html

Window Location Assign
la méthode location.assign() charge un nouveau document.

Instance

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>php中文网(php.cn)</title>
</head>
<head>
<script>
function newDoc(){
	window.location.assign("http://www.php.cn")
}
</script>
</head>
<body>

<input type="button" value="加载新文档" onclick="newDoc()">

</body>
</html>

Exécuter l'instance»

Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne