“Obtenga URL actual JS” Código de respuesta

Obtenga URL actual JS

var currentUrl = window.location.href;
Grepper

Obtenga la URL actual JavaScript

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 Get Dominio

window.location.hostname
Friendly Hawk

¿Obtiene la URL actual con 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 obtenga URL actual

let location = window.location.href;
Undefined

¿Obtiene la URL actual con JavaScript?

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

document.URL
shafeeque

Respuestas similares a “Obtenga URL actual JS”

Preguntas similares a “Obtenga URL actual JS”

Más respuestas relacionadas con “Obtenga URL actual JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código