“JavaScript obtenga URL actual” Código de respuesta

JavaScript obtenga URL actual

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

Obtenga URL real en variable

var currentLocation = window.location;
Prickly Pheasant

Cómo obtener la URL de una página en JavaScript

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

JavaScript obtenga URL actual

let location = window.location.href;
Undefined

Respuestas similares a “JavaScript obtenga URL actual”

Preguntas similares a “JavaScript obtenga URL actual”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código