“Holen Sie sich aktuelle URL JS” Code-Antworten

Holen Sie sich aktuelle URL JS

var currentUrl = window.location.href;
Grepper

Holen Sie sich das aktuelle URL 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

Holen Sie sich die aktuelle URL mit 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 erhalten die aktuelle URL

let location = window.location.href;
Undefined

Holen Sie sich die aktuelle URL mit JavaScript?

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

document.URL
shafeeque

Ähnliche Antworten wie “Holen Sie sich aktuelle URL JS”

Fragen ähnlich wie “Holen Sie sich aktuelle URL JS”

Weitere verwandte Antworten zu “Holen Sie sich aktuelle URL JS” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen