我从 iframe 中调用 javascript 以重定向到另一个 url。
var new_url = "http://mysite.com/?language=en&origin="
+ origin +"&destination="+ destination + "&Date=" + date;
}
//window.location.replace(new_url);
window.top.location.href = new_url;
//window.location.assign(new_url);
目的是在同一窗口中从 iframe 打开页面,所以我正在使用
window.top.location.href = new_url;
它在 IE 中运行 finr 但在 chrome 和 FF 中运行但也没有给出任何错误