“Cómo obtener la URL de una página en JavaScript” 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

Cómo obtener la URL del navegador en JavaScript

function getURL() {
  alert("The URL of this page is: " + window.location.href);
}
Nemo

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

¿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

cheque de URL de JavaScript

const isAbsoluteUrl = url => /^[a-z][a-z0-9+.-]*:/.test(url);

// Example
isAbsoluteUrl('https://1loc.dev');          // true
isAbsoluteUrl('https://1loc.dev/foo/bar');  // true
isAbsoluteUrl('1loc.dev');                  // false
isAbsoluteUrl('//1loc.dev'); 
Batman

Respuestas similares a “Cómo obtener la URL de una página en JavaScript”

Preguntas similares a “Cómo obtener la URL de una página en JavaScript”

Más respuestas relacionadas con “Cómo obtener la URL de una página en JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código