“JQuery Redirect” Code-Antworten

JQuery Redirect

// 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

JQuery leiten zur URL um

$(location).attr('href', 'https://google.com');
Carnivorous Flamingo

JQuery Fenster umleiten Sie mit Kopfball

$(location).attr('href', 'www.google.co.in');
hsan8

Wie kann ich den Benutzer mit JQuery oder reinem JavaScript von einer Seite zur anderen umleiten?

Solution #1
for Jquery you can use following code
$(location).prop('href', 'https://www.codegrepper.com/profile/shafeeque-ahmad')

Solution #2
for pure javascript you can use following solution

window.location.href='otherpage.com';
 window.location.assign('otherpage.com');
 //and...

 window.location.replace('otherpage.com');
shafeeque

Ähnliche Antworten wie “JQuery Redirect”

Fragen ähnlich wie “JQuery Redirect”

Weitere verwandte Antworten zu “JQuery Redirect” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen