如何在 Firefox 中覆盖 window.location?

发布于 2024-12-13 17:51:32 字数 393 浏览 0 评论 0原文

我试图通过以下代码覆盖 Firefox 中的 window.location 并不断收到错误(实际上想阻止默认行为,但我认为这不相关):

    Code : 
    window.__defineGetter__('location', function() {});

    Error
    redeclaration of var location

我从 以编程方式禁用window.location.reload?,但不起作用。

提前致谢, 苏尼尔

I am trying to override the window.location in Firefox, through the following code and keep getting an error (actually want to prevent the default behavior, but I think that's not relevant) :

    Code : 
    window.__defineGetter__('location', function() {});

    Error
    redeclaration of var location

I started with the suggestions at Programatically disable window.location.reload?, but didn't work.

Thanks in advance,
Sunil

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筑梦 2024-12-20 17:51:32

出于安全原因,Window 的 location 属性是不可配置的,因为一些破坏性的事情会在 window.location.toString() 的值上进行安全检查,所以你不能这样做。

The location property of Window is non-configurable for security reasons, because some broken things out in the wild base security checks on the value of window.location.toString(), so you can't do this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文