“Lokalizacja JS” Kod odpowiedzi

JavaScript Uzyskaj bieżący adres URL

var currentUrl = window.location.href;
Grepper

Window.href

//its actually 
window.location.href = "/App/Home"
//or
window.location.href = "https://www.google.com/"
Confused Penguin

Lokalizacja JS

// https://example.com:81/path?argument=value#hash

location.href         // https://example.com:81/path?argument=value#hash
location.protocol     // https
location.hostname     // example.com
location.port         // 81
location.host         // example.com:81
location.pathname     // /path
location.search       // ?argument=value       (see URLSearchParams to parse)
location.hash         // #hash
location.origin       // https://example.com"
TomatenTim

Jak korzystać z lokalizacji.pathname

// Let's an <a id="myAnchor" href="https://developer.mozilla.org/en-US/docs/Location.pathname"> element be in the document
var anchor = document.getElementById("myAnchor");
var result = anchor.pathname; // Returns:'/en-US/docs/Location.pathname'
Horrible Herring

Odpowiedzi podobne do “Lokalizacja JS”

Pytania podobne do “Lokalizacja JS”

Więcej pokrewnych odpowiedzi na “Lokalizacja JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu