我正在使用 Json 从 php 文件中检索 url,然后在成功部分中我执行
window.location=msg.message
但问题是,如果我们假设我的域是 http example.com 并且
msg.message
值是
https://otherdomain.com
重定向到 http:/example.com/https:/otherdomain.com 我怎样才能直接转到 https:/otherdomain.com 代码
$.ajax({
type: "POST",
url: "ajax.php",
data: dataString,
dataType: "json",
success: function (msg){
$.fn.colorbox.close();//close the box
alert(decodeURI(msg.message));//
window.location.href(msg.message); // goes to domain.com/msg.message
},
});