当我的页面重定向到另一个URL时,它会一次又一次地重新加载。我也尝试过e.preventdefault();
,on.load();
$.get("https://ipinfo.io", function(response) {
if (response.country && response.country == 'IN') {
window.location.replace('http://v2.coworkingops.com/in');
$('#ip-detect').val(response.country);
}
}, "jsonp");