Jquery 2.1.1 in IE9 get error: 0x800a01b6 - Micros

2019-02-22 02:04发布

Using Visual Studio 2013, I migrated a hybrid Asp.Net Webforms/MVC 3 web application to Asp.Net Webforms/MVC 5.1. As part of the migration I upgraded Jquery from 1.9.1 to 2.1.1, using the NuGet package manager.

When I run the application in the Visual Studio 2013 debugger in Chrome I have no problem.

When I run the application in the Visual Studio 2013 debugger in IE 9 (compatibilty mode is not on) a master page with these two script tags loads first:

<script src="/Scripts/jquery-2.1.1.js" type="text/javascript"></script>
<script src="/Scripts/jquery-ui-1.10.4.js" type="text/javascript"></script>

It fails with this Javascript error:

Unhandled exception at line 3425, column 4 in http://localhost:25378/Scripts/jquery-2.1.1.js 
0x800a01b6 - Microsoft JScript runtime error: Object doesn't support property or method 'addEventListener'

I realize that Jquery 2 does not work with IE 8 and below, but I cannot find any documentation noting any issues with IE 9.

The error occurs on line 3425 of jquery-2.1.1.js inside the jQuery.ready.promise function:

document.addEventListener( "DOMContentLoaded", completed, false );

Strangely, when I stop at the error, examine the document object in the debugger and expand the "Methods" node I can see the "addEventListener" method. It is as if Jquery does not have rights to see the method.

I'd very much like to move up to Jquery 2, and from everything I've read Jquery 2 should work with IE9. Any advice on fixing this issue?

4条回答
女痞
2楼-- · 2019-02-22 02:27

I was getting the same error with a brand new web app in VS2013 Ultimate. Turns out IE11 was running in compatibility mode - turning that off got rid of the error

查看更多
干净又极端
3楼-- · 2019-02-22 02:36

Thank you ᾠῗᵲᄐᶌ and QBM5 for your comments, the answer in this case was to remove

<meta http-equiv="X-UA-Compatible" content="IE=8">

from the master page header, because it put the browser into IE 8 compatibility mode, and IE 8 is not compatible with JQuery 2.

查看更多
Bombasti
4楼-- · 2019-02-22 02:46

You can add below code in your web config file for setting document mode:

<system.webServer>
  <httpProtocol>
    <customHeaders>
     <add name="X-UA-Compatible" value="IE=EmulateIE9" />
    </customHeaders>
 </httpProtocol>
</system.webServer>
查看更多
神经病院院长
5楼-- · 2019-02-22 02:52

I was getting similar exception while using JQuery in IE8. and found solution

<head id="Head1" runat="server"> 
    <!--[if lt IE 9]>
        <script src="/js/trirand/jquery-1.11.1.min.js" type="text/javascript"></script> 
    <![endif]-->

    <!--[if gt IE 8]>
        <script src="/js/trirand/jquery-2.1.1.min.js" type="text/javascript"></script> 
        <![endif]-->
</head>

you can change version if need.

From the code: IE8 and lesser versions support jQuery1X versions

Jquery2x versions are working in IE9 and higher versions.

Good luck

查看更多
登录 后发表回答