Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道页面加载时警报框从哪里显示。我只想阻止此警报框。如何实现这一点?
不确定这与浏览器的兼容性如何,因此您必须自己进行试验。我已经在最新版本的 Chrome 中对其进行了测试。
capture = window.alert; window.alert = function(){}; // Script loaded here window.alert = capture;