gpt4 book ai didi

html - IE 只有 css 不加载

转载 作者:行者123 更新时间:2023-11-28 10:25:40 24 4
gpt4 key购买 nike

<分区>

这是一个非常简单的 HTML 页面,我试图在 IE 11 上呈现,但不知何故从未采用 IE 特定的 css 文件。

我在这里附上我的代码。

 <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="images/favicon.ico">

<title>Demo</title>

<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/all-ie-only.css" />
<![endif]-->

</head>
<body class="subpage">

</body>
</html>

我的 css 包含:

样式.css

body{background:blue;}

all-ie-only.css

body{background:red;}

注意:我已经引用并尝试了类似问题的解决方案,如下所示,但没有成功。

ie only stylesheet not working, code included

我试过但没有成功的解决方案:

<script>
/*@cc_on

@if (@_jscript_version == 11)
document.write("You are using IE11 with an older document mode");
@elif (@_jscript_version == 10)
document.write("You are using IE10");
@elif (@_jscript_version == 9)
document.write("You are using IE9");
@elif (@_jscript_version == 5.8)
document.write("You are using IE8");
@elif (@_jscript_version == 5.7 && window.XMLHttpRequest)
document.write("You are using IE7");
@elif (@_jscript_version == 5.6 || (@_jscript_version == 5.7 && !window.XMLHttpRequest))
document.write("You are using IE6");
@elif (@_jscript_version == 5.5)
document.write("You are using IE5.5");
@elif (@_jscript_version < 5.5)
document.write("You are using a version older than IE5.5");
@else
document.write("You are using an unknown version of IE");
@end

@*/
</script>

我尝试过的是这里的建议:https://en.wikipedia.org/wiki/Conditional_comment

似乎,它永远不会进入指定“@_jscript_version”的条件。进一步感谢任何帮助。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com