“JavaScript Obtenha URL atual” Respostas de código

JavaScript Obtenha URL atual

var currentUrl = window.location.href;
Grepper

Obtenha o JavaScript URL atual

window.location.pathname; // Returns path only (/path/example.html)
window.location.href;     // Returns full URL (https://example.com/path/example.html)
window.location.origin;   // Returns base URL (https://example.com)
Spyder

JavaScript obtém domínio

window.location.hostname
Friendly Hawk

Obtenha URL real na variável

var currentLocation = window.location;
Prickly Pheasant

Como obter o URL de uma página em JavaScript

// this gives you just the URL without params
var currentUrlWithoutParams = window.location.href.split("?")[0];
sandy_codes_py

JavaScript Obtenha URL atual

let location = window.location.href;
Undefined

Respostas semelhantes a “JavaScript Obtenha URL atual”

Perguntas semelhantes a “JavaScript Obtenha URL atual”

Mais respostas relacionadas para “JavaScript Obtenha URL atual” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código