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.
目前不知道有没有可能?
我的场景之一是我想通过注入我的 JavaScript 文件来捕获将显示在第三方网站的警报框中的文本。
有没有办法使用 JavaScript 捕获/检索显示在警报消息框上的文本内容?
您可以尝试遮蔽该alert功能:
alert
window.alert = (function(al) { return function(text) { // your stuff here... al(text); }; })(window.alert);