Web代理处理window.location重定向

时间:2010-01-29 12:20:42

标签: javascript internet-explorer location

我正在使用网络代理,当网站使用javascript重定向时我遇到问题

window.location = "http://newurl.com";

有没有办法拦截这个并将网址重写为此格式“proxt?url = http://newurl.com

在Firefox中很简单,

function locationWatcher(id, oldURL, newURL) {
     return parseURL(newURL);
  }

window.watch('location', locationWatcher);

但问题是我需要它在IE下工作。

提前致谢!

1 个答案:

答案 0 :(得分:0)

您的代理可以重写HTML,但这非常难以正确执行。

编写一个为IE执行此操作的插件也非常难以正确执行。

如何处理使用META刷新的重定向?