“Obtenha URL atual JS” Respostas de código

Obtenha URL atual JS

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

Obter o URL atual com JavaScript?

console.log(window.location.href);

As noted in the comments, the line below works, but it is bugged for Firefox.
document.URL
Mr. Samy

JavaScript Obtenha URL atual

let location = window.location.href;
Undefined

Obter o URL atual com JavaScript?

window.location.href
As noted in the comments, the line below works, but it is bugged for Firefox.

document.URL
shafeeque

Respostas semelhantes a “Obtenha URL atual JS”

Perguntas semelhantes a “Obtenha URL atual JS”

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

Procure respostas de código populares por idioma

Procurar outros idiomas de código