gpt4 book ai didi

javascript - window.location 是一个对象吗?

转载 作者:行者123 更新时间:2023-11-28 20:39:02 25 4
gpt4 key购买 nike

window.location = null; // But it redirects to http://example.com/null

是否可以删除window.location?

我正在编写一个代理,我想确保请求网址内的脚本不会重定向到他们的页面。

window.location = 'http://actual-urlexample.com';

我的想法是用我们的对象替换window.location,以便我们可以控制我的代理服务器的上述代码。我只想知道一件事:window.location 是否是一个对象。当我们给 window.location 赋值时,事件(新的 url 正在加载)是如何发生的?

最佳答案

至少有两种明显的方法可以找到答案:

  • 您浏览器的 JavaScript 控制台:

    >>> typeof window.location
    "object"
  • 您最喜欢的documentation :

    Returns a Location object, which contains information about the URL of the document and provides methods for changing that URL. You can also assign to this property to load another URL.

无意冒犯,但我希望你看到你重写了一个内置对象,如果你甚至需要询问它是否是一个对象;-P

编辑:一点澄清 - 我认为从技术上讲位置实际上是窗口属性包含 Location 对象的对象。

关于javascript - window.location 是一个对象吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14749364/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com