admin管理员组

文章数量:1344241

I am developing a web application. My application works great on chrome and firefox, but from some reason is rises some errors in IE. Even though several errors arise, the application can still run smoothly, with no apparent problem.

I'd like to hide the errors from the end user, as currently he is presented with a small icon that says an error occurred.

How can I achieve this?

Thank you

I am developing a web application. My application works great on chrome and firefox, but from some reason is rises some errors in IE. Even though several errors arise, the application can still run smoothly, with no apparent problem.

I'd like to hide the errors from the end user, as currently he is presented with a small icon that says an error occurred.

How can I achieve this?

Thank you

Share Improve this question asked Mar 14, 2011 at 16:22 vondipvondip 14.1k28 gold badges102 silver badges160 bronze badges 1
  • 2 (joking): try / catch everything. – i_am_jorf Commented Mar 14, 2011 at 17:50
Add a ment  | 

3 Answers 3

Reset to default 6

The best thing to do, by far, is figure out where the code is causing the error and fix that.

Update: The below is true for IE8, but not IE9 or IE11 (and so probably not true for IE10):

Because this is specifically happening in IE, you could use window.onerror to handle (suppress) them if they're runtime (not pilation) errors, which from your ment on another answer it sounds like they are. From that link:

To suppress the default Internet Explorer error message for the window event, set the returnValue property of the event object to true or simply return true in Microsoft JScript.

The onerror event fires for run-time errors, but not for pilation errors. In addition, error dialog boxes raised by script debuggers are not suppressed by returning true. To turn off script debuggers, disable script debugging in Internet Explorer by choosing Internet Options from the Tools menu. Click the Advanced tab and select the appropriate check box(es).

Example:

This code causes an error (because I'm trying to dereference undefined):

document.getElementById('theButton').onclick = function() {
  var d;

  display(d.foo);
};

Live copy

But if we add this, the error is suppressed because we tell IE we handled it:

window.onerror = function() {
  // Return true to tell IE we handled it
  return true;
};

Live copy

As far as I know, there is no real way to do this because you would then be controlling the browser (AKA the application) and this would be a bad thing. The user can manually turn off those errors, or you can see if you can fix your JavaScript. But, other than those two solutions, I think you're out of luck.

Fix the errors - most of the time, they would be something trivial that only IE trips on. For those cases, fixing the problems found by JSLint helps with 90% of the stuff: http://www.jslint./lint.html

本文标签: javascriptIEprevent errors from being shown in IEStack Overflow