“JavaScript Umleitung zur Datei” Code-Antworten

JavaScript umleiten

// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";
FloatDev

JS leitet sich zu relativen URL aus

window.location.href = '/path'; //relative to domain
Heinz

JS -Fensterstandort relativer Weg

//To get just the relative path of a window location.

const RELATIVE_PATH = window.location.pathname; 
JustALittleHeat

JavaScript Umleitung zur Datei

window.location.href = '../'; //one level up
// or
window.location.href = '/path'; //relative to domain
Karamolegkos

Ähnliche Antworten wie “JavaScript Umleitung zur Datei”

Fragen ähnlich wie “JavaScript Umleitung zur Datei”

Weitere verwandte Antworten zu “JavaScript Umleitung zur Datei” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen