“redirect jQuery” Kode Jawaban

redirect jQuery

// 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 mengarahkan ke URL

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

JUSTE Window JQuery Redirect dengan header

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

Bagaimana saya bisa mengarahkan kembali pengguna dari satu halaman ke halaman lain menggunakan jQuery atau JavaScript murni?

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

Jawaban yang mirip dengan “redirect jQuery”

Pertanyaan yang mirip dengan “redirect jQuery”

Lebih banyak jawaban terkait untuk “redirect jQuery” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya