“JavaScript erhalten die aktuelle URL” Code-Antworten

JavaScript erhalten die aktuelle URL

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 tatsächliche URL in Variable

var currentLocation = window.location;
Prickly Pheasant

So erhalten Sie die URL einer Seite in JavaScript

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

JavaScript erhalten die aktuelle URL

let location = window.location.href;
Undefined

Ähnliche Antworten wie “JavaScript erhalten die aktuelle URL”

Fragen ähnlich wie “JavaScript erhalten die aktuelle URL”

Weitere verwandte Antworten zu “JavaScript erhalten die aktuelle URL” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen