我從檢索使用JSON一個php文件的URL,然後在成功的一部分,我做與JavaScript重定向到另一個域使用JSON
window.location=msg.message
但proble是,如果我們假設我的域名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
},
});
這似乎不正確,這裏是一個小提琴:http://jsfiddle.net/f5mWV/1/ (使用'window.top'因爲jsfiddle使用iframes)你能發佈更多的代碼嗎? –
'https:/ otherdomain.com'應該是'https:// otherdomain.com' – Musa
我想出了問題,但不是解決方案! 問題是json_encode,編碼//和:到%2F%2F和%3A 如何檢索正確的url? –