“So erhalten Sie die URL einer Seite in JavaScript” 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

Wie man Browser -URL in JavaScript bekommt

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

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

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 -URL -Prüfung

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

Ähnliche Antworten wie “So erhalten Sie die URL einer Seite in JavaScript”

Fragen ähnlich wie “So erhalten Sie die URL einer Seite in JavaScript”

Weitere verwandte Antworten zu “So erhalten Sie die URL einer Seite in JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen