我使用此代码来覆盖 window.alert 函数。该函数将中断替换为 \r\n。它在 Firefox 中运行良好,但在 IE 中当然不行。我收到错误消息:不支持属性或方法。
(function() {
var proxied = window.alert;
window.alert = function(txt) {
txt = txt.replace(/<br>/g, "\r\n");
return proxied.apply(this, arguments);
};
})();
请帮我找到解决方案!谢谢