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 尝试使用 URL 访问框架”之外的所有控制台错误。有谁知道为什么该错误被过滤?
我的代码:
window.onerror = function(message) { alert(message); return true; };
提前谢谢
可能重复: 显示 Javascript“同源策略”违规 在 Javascript 中捕获同源异常?
可能重复:
我不确定这是否是检测同源策略违规的方法,因为window.onerror唯一会捕获运行时 JS 错误(请参见此处)。
window.onerror
对于error事件的跨浏览器兼容性,您可以查看:
error
http://www.quirksmode.org/dom/events/error.html