可以忽略“加载脚本错误”js错误吗?

时间:2012-05-04 10:37:17

标签: javascript firefox

我有一个脚本来处理window.onerrors并将其推送到我的服务器。我看到一些只在Firefox中出现的“Error Loading Script”错误。

我四处搜索,人们忽略了“错误加载脚本”错误。例如

  1. Cryptic "Script Error." reported in Javascript in Chrome and Firefox
  2. Firefox: "Error loading script"
  3. 如上所述,可以安全地忽略这些错误吗?或者我应该只在Firefox中忽略?

2 个答案:

答案 0 :(得分:0)

如果忽略你意味着隐藏,是的,可能。

只需引用您的代码:

try {

    // put code that produce error

}
catch( error ){

    // console.log(error);

};

隐藏错误可能不是解决问题的更好方法......

答案 1 :(得分:0)

"加载脚本时出错"不会通过Firefox 14+中的window.onerror报告:MDNBugzilla