“Como obter o URL de uma página em JavaScript” 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

Como obter o URL do navegador em JavaScript

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

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

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 URL Check

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

Respostas semelhantes a “Como obter o URL de uma página em JavaScript”

Perguntas semelhantes a “Como obter o URL de uma página em JavaScript”

Mais respostas relacionadas para “Como obter o URL de uma página em JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código