objet de locali...LOGIN

objet de localisation

L'objet de localisation représente les informations URL de la page actuelle. Par exemple, une URL complète :

http://www.example.com:8080/path/index.html?a=1&b=2#TOP

peut être obtenue en utilisant location.href. Pour obtenir la valeur de chaque partie de l'URL, vous pouvez écrire :

location.protocol; // 'http'
location.host; // 'www.example.com'
location.port; // '8080'
location.pathname; // '/path/index.html'
location.search; // '?a=1&b=2'
location.hash; // 'TOP'

Pour charger une nouvelle page, vous pouvez appeler location.assign(). Si vous souhaitez recharger la page en cours, il est très pratique d'appeler la méthode location.reload().

Propriétés de l'objet de localisation :

QQ截图20161012171542.png

Méthodes de l'objet de localisation :

QQ截图20161012171548.png

section suivante
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>location</title> </head> <script type="text/javascript"> var myurl=window.location.href; document.write("当前网址:"+myurl); </script> </head> <body> </body>
soumettreRéinitialiser le code
chapitredidacticiel