“Obtenez une URL actuelle JS” Réponses codées

Obtenez une URL actuelle JS

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

JavaScript Get Domain

window.location.hostname
Friendly Hawk

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

javascript obtient une URL actuelle

let location = window.location.href;
Undefined

Obtenez l'URL actuelle avec JavaScript?

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

document.URL
shafeeque

Réponses similaires à “Obtenez une URL actuelle JS”

Questions similaires à “Obtenez une URL actuelle JS”

Plus de réponses similaires à “Obtenez une URL actuelle JS” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code