Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
39 views
in Technique[技术] by (71.8m points)

html - JavaScript critical error at line 5, column 9 in (unknown source location)

I am using visual studio 2012

I have this simple html page, not asp.net page:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Test Float</title>
    <link rel="stylesheet" href="Styles/style.css" />
</head>
<body>
    <div class="header"></div>
    <div class="slideBar"></div>
    <div class="content"></div>
    <div class="footer"></div>
</body>
</html>

I run it on google chrome. it works good.

when I debug it on internet explorer. I got this error:

enter image description here

Edit

For those who think that the sytle sheet is the problem. here is my style sheet

html, body {
margin:0px;
height:100%;
}
.header {
    width:100%;
    height:20%;
    background-color:red;
}
.footer {
    width:100%;
    height:20%;
    background-color:green;
}
.slideBar {
    width:20%;
    height:60%;
    float:right;
    background-color:blue;
}
.content {
    width:80%;
    height:60%;
    background-color:yellow;
}

It is working very good on google chrome and mozilla. the code is very very simple. just that IE11 is not

Edit2

After I added my html page link to the compatibility mode. I got this exception:

enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Your browser is apparently running an add-on that injects scripts into loaded pages, and these scripts cause problems with IE11 (and 10).

You can configure Visual Studio to run IE in safe mode by adding an iexplore -extoff entry to the Browse With list and setting it as default, as explained here.

That said, I would recommend investigating which add-on is responsible for this situation, as it may have other adverse effects to your web usage (and to your privacy), and you may want to remove it if at all possible.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...