jQuery jump to another page

jQuery jump to another page

1. We can use the redirect http to jump

window.location.replace("https://www.cnblogs.com/pythonywy/");

2. Use the href to jump

window.location.href = "https://www.cnblogs.com/pythonywy/";

3. The method of alternative attributes of jQuery

3.1 $(location).attr('href', 'https://www.cnblogs.com/pythonywy/');

3.2 $(window).attr('location','https://www.cnblogs.com/pythonywy/');

3.3 $(location).prop('href', 'https://www.cnblogs.com/pythonywy/')

Guess you like

Origin www.cnblogs.com/pythonywy/p/11408329.html