IE9无法正确显示,我的html标题是否正确?

时间:2013-02-28 19:07:21

标签: css header internet-explorer-9

我问这个因为我不知道为什么在IE9中我的网站看起来像这样:

enter image description here

另一个broswers显示正确:

enter image description here

我认为这是由于头文件中的位置不佳而不是正是这种情况发生,而且这是我项目的最后一部分,它在IE9中看起来很不错。

我的index.php的一般结构

<!DOCTYPE html>
<html lang="es">
<head>
    <?php include 'configHead.php' ?>
    <title>Panel de Servicio</title>
</head>
<body>
.......
</body>

configHead.php

<meta charset="utf-8">
<link rel="shortcut icon" href="media/favicon.png" />
<script src="js/prefixfree.min.js" type="text/javascript"></script>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css" type="text/css"/>
<link rel="stylesheet" href="css/jquery-ui-1.9.2.custom.css" type="text/css"/>
<link rel="stylesheet" href="css/jquery.dataTables.css" type="text/css"/>

<script src="js/jquery-1.8.3.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.9.2.custom.js" type="text/javascript"></script>
<script src="js/jquery-ui-timepicker-addon.js" type="text/javascript"></script>
<script src="js/functions.js" type="text/javascript"></script>
<script src="js/jquery.dataTables.js" type="text/javascript"></script>

任何人都知道为什么会这样?

1 个答案:

答案 0 :(得分:1)

您不能拥有任何评论或<!DOCTYPE html>上方的任何文字...删除评论顶部,您的网站将在IE中正常工作..它目前触发您的页面去进入怪癖模式(大致相当于IE5)..就IE而言,你没有doctype。

现在你有这个评论:

<!--Aplicación: Sistema de tickets y pólizas.
Cliente: MA Consulting.
Desarrollador: Edgardo Ramírez León 
Twitter: @_soldier
Email: soldiercrp@gmail.com
Fecha: Julio/2012 - Febrero/2013
-->

<!DOCTYPE html>

在您的doctype之前..在 <!DOCTYPE html>

之后移动该评论