Holen Sie sich Seiten -URL ohne Parameter in JavaScript
window.location.href.split('?')[0];
Yousef Qaoud
window.location.href.split('?')[0];
let urlWithOutParameters = window.location.protocol + "//" + window.location.origin + window.location.pathname;
let urlWithParameters = window.location.href;