目前我不知道是否可能?
我的一个场景我想通过注入我的JavaScript文件捕获将在第三方网站的警告框中显示的文本。
有没有办法使用JavaScript捕获/检索警报消息框中显示的文本内容?
答案 0 :(得分:5)
您可以尝试隐藏alert
功能:
window.alert = (function(al) {
return function(text) {
// your stuff here...
al(text);
};
})(window.alert);