“Comment obtenir l'URL d'une page en JavaScript” Réponses codées

javascript obtient une URL actuelle

var currentUrl = window.location.href;
Grepper

Obtenez l'URL actuelle 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

Comment obtenir l'URL du navigateur en javascript

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

Comment obtenir l'URL d'une page en JavaScript

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

Obtenez l'URL actuelle avec 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

Vérification de l'URL 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

Réponses similaires à “Comment obtenir l'URL d'une page en JavaScript”

Questions similaires à “Comment obtenir l'URL d'une page en JavaScript”

Plus de réponses similaires à “Comment obtenir l'URL d'une page en JavaScript” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code