window.location = null; // But it redirects to http://example.com/null
是否可以删除window.location?
我正在编写一个代理,我想确保请求 url 中的脚本不会重定向到他们的页面。
window.location = 'http://actual-urlexample.com';
我的想法是用我们的对象替换window.location以便我们可以控制我的代理服务器的上述代码。我只想知道一件事:window.location是否是一个对象。当我们为window.location赋值时,事件(新的 url 正在加载)是如何发生的?