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
},
});