禁用 javascript 中的内置函数(警报)

发布于 2024-10-06 04:15:58 字数 97 浏览 3 评论 0原文

很简单:我想禁用/覆盖 alert()

我可以这样做吗?

更重要的是,这样做是否正确?

那么严格模式呢?

Simple: I want to disable/overwrite alert().

Can I do this?

More importantly, is it right to do this?

What about strict mode?

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

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

发布评论

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

评论(2

优雅的叶子 2024-10-13 04:15:58

是的,您可以禁用或覆盖 alert()。不,这样做是不对的,除非在一些奇怪和有限的情况下。

禁用:

window.alert = function() { }; 

覆盖:

window.alert = function(text) { /* do something */ };

Yes, you can disable or overwrite alert(). No, it's not right to do it, except in some bizarre and limited situations.

Disable:

window.alert = function() { }; 

Override:

window.alert = function(text) { /* do something */ };
2024-10-13 04:15:58

是的,你可以,这是你的选择。您还可以存储原始的“警报”:

window.nativeAlert = window.alert;
window.alert = function(val){console.log(val+' (alert disabled)');};

现在旧的警报仍然可用:nativeAlert('something');

Yes you can, it's your choice. You could also store the original 'alert':

window.nativeAlert = window.alert;
window.alert = function(val){console.log(val+' (alert disabled)');};

now the old alert is still usable: nativeAlert('something');

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