“window.location.origin” Code-Antworten

window.location.origin

// On this page, returns the origin
var result = window.location.origin; // Returns:'https://developer.mozilla.org'
ekkamrit

So verwenden Sie Standort.PathName

// Let's an <a id="myAnchor" href="https://developer.mozilla.org/en-US/docs/Location.pathname"> element be in the document
var anchor = document.getElementById("myAnchor");
var result = anchor.pathname; // Returns:'/en-US/docs/Location.pathname'
Horrible Herring

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen