Bootstrap网站不适用于IE

Bootstrap Website does not work on IE

本文关键字:IE 适用于 不适用 网站 Bootstrap      更新时间:2023-09-26

我使用Bootstrap开发了这个网站。现在有些javascript和样式无法被IE识别,这很奇怪!

这是链接:

{http://--162.243.241.231--/blue/calculator.html}

任何解决方案或想法都将不胜感激!

对于样式,只为IE创建一个单独的样式表,并将其与所有常规CSS一起放在<head>中,例如:

<!--[if IE]>
<link rel="stylesheet" type="text/css" href="IE.css" />
<![endif]-->

如果你想指定什么IE版本:

<!--[if IE 9]>
<link rel="stylesheet" type="text/css" href="IE9.css">
<![endif]-->