0

我在 ie7 中遇到一个问题,我的样式表根本没有加载,我检查了它是否编码为没有 BOM 的 utf-8,并且页面上的字符集设置为 utf-8。这是头部:

<!DOCTYPE html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <title></title>
        <meta name="description" content="">
        <meta name="viewport" content="width=device-width">

        <link rel="stylesheet" href="public/themes/dark/less/style.css">

        <script src="js/vendor/modernizr-2.6.2.min.js"></script>
    </head>

如果有任何帮助,请访问该网站:http: //www.mattjonesmusic.com/

我认为这个错误也可能发生在 ie6 上,尽管我没有虚拟机设置来测试它。

4

2 回答 2

0

找到了答案,这是一个编译问题(我正在从源代码自己编译引导程序)。我已经摆脱了一个包含定义仅在 ie 过滤器中使用的变量的方法。

感谢所有试图提供帮助的人。

于 2013-02-05T20:23:20.670 回答
0

尝试删除以下标记 meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"

于 2013-01-31T13:21:11.650 回答