我在 IE 9 及以下版本上运行我的 PHP 应用程序时遇到问题。当我在 IE 10 中运行它时,一切都很顺利。但正如我在 IE 9 及更低版本中没有提到的那样。具体来说,我有一个模式弹出窗口,显示单击按钮的时间。在较低版本的 IE 中,它没有显示。我已经像这样做了我的css decalration:
<link rel="stylesheet" type="text/css" href="css/site_global.css?114823713"/>
<link rel="stylesheet" type="text/css" href="css/index.css?4155766782" id="pagesheet"/>
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
<link rel="stylesheet" type="text/css" href="modal.scss">
<link rel="stylesheet" type="text/css" href="modal.css">
我读过这篇文章:IE 6,7,8,9 CSS 兼容性样式表,但我不知道该怎么做。我在这篇文章中说,我可以在我的代码中包含类似 noramalize css 的内容。但我不确定该放置什么或如何使用那个东西。在一篇文章中,我还读到我可以包含以下代码:
<!--[if lt IE 9]>
<script src="dist/html5shiv.js"></script>
<![endif]-->
请帮我。老实说,我不知道该怎么做以及如何使用这些东西。提前谢谢你。我这样调用我的代码:
上传.成功.php
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link rel="stylesheet" type="text/css" href="modal.css">
<title>Successful upload</title>
</head>
<body>
<a href="#modal-text" class="call-modal" title=""></a>
</div>
</div>
<!-- A modal with its content -->
<section class="semantic-content" id="modal-text"
tabindex="-1" role="dialog" aria-labelledby="modal-label" aria-hidden="true">
<div class="modal-inner">
<a href="http://site.com/folder/gallery.php" class="call-modal" title="Clicking this link shows the Gallery Page"><img src="http://site.com/modal/images/thanku-post.jpg" class="thanku"/> </a>
</div>
<!-- Use Hash-Bang to maintain scroll position when closing modal -->
<a href="http://site.com/folder/index.php" class="modal-close" title="Close this modal"
data-dismiss="modal">×</a>
</section>
<script src="js/modal.js"></script>
</body>
</html>