Reply.min.js, line 5 character 746, access denied, in IE8?

In fact, I am testing my site in IE8 using bootstrap3. I used these lines of code.

  <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>

When I debugged the code, IE8 reflected an error in c.open ("GET", a ,! 0) , how can I solve it, what is the problem ????

+4
source share
2 answers

When using bootstrap and IE8, you must run html from the server in order to avoid a security issue, as pointed out by @jevgenig. For local testing, you can use localhostas a replacement.

IE .

<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!--[if lt IE 9]>
        <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
        <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
+1

response.js . .

0

All Articles