7

我们刚刚完成了一个 Web 应用程序的开发,我们想要阻止 Internet Explorer 8 及以下版本。实现这一目标的最佳方法是什么?

我找到了阻止 IE6 的方法,但是教程(http://css-tricks.com/ie-6-blocker-script/)是 2008 年的,我觉得它有点过时了。我们还想阻止 IE 7 和 8...

该站点使用 CodeIgniter 构建,包含大量 Backbone.js。

如果有人有任何想法,他们将不胜感激。

谢谢!

更新

抱歉,伙计们,更多信息:是的,我想阻止他们,我想显示一条消息并能够设置页面样式,以显示“抱歉,您使用的 Internet Explorer 不是网络浏览器,请在此处下载 CHROME”。

4

7 回答 7

10

使用 CSS 和条件注释来完成。

<head>
    <!--[if IE lte 8]>
    <link rel="stylehseet" type="text/css" href="blockIE.css" />
    <[endif]-->
</head> 
<body>
    <div class="yourcontent">
        ...
    </div>
    <div class="notification">
        <h1>Sorry, we don't support your old browsers</h1>
    </div>
</body>

CSS:

body * { display: none }
.notification { display: block; }
于 2013-03-07T15:53:44.483 回答
8

您也可以使用 CodeIgniter, https: //www.codeigniter.com/user_guide/libraries/user_agent.html

就像是:

$this->load->library('user_agent');
if ($this->agent->browser() == 'Internet Explorer' && $this->agent->version() <= 8){
    //Redirect or show error
}

(也在这里回答:代码点火器 - 检测浏览器的最佳方法

于 2013-03-07T15:50:53.193 回答
2

这会检查 IE 8 及更低版本的浏览器。它用于<head>

<!--[if lte IE 8]>
    <meta http-equiv="refresh" content="0; url=http://www.google.com" />
    <script type="text/javascript">
        window.top.location = 'http://www.google.com';
    </script>
<![endif]-->
于 2013-03-07T15:55:56.513 回答
0

你可以使用 jQuery 来做到这一点:

//if its internet explorer...
if(jQuery.browser.msie){
     //getting the version
     if($.browser.version < 8){
         //do whatever
     }
}

更多信息。

更新

正如评论所指出的,不推荐使用此功能。你应该看看这个: How to detect IE7 and IE8 using jQuery.support

更新 2

您也可以使用此处指出的 PHP 来执行此操作。

于 2013-03-07T15:48:28.457 回答
0
<!--[if lt IE 9]>
    <!-- Some div saying sorry or calling js function or whatever -->
<![endif]-->
<!--[if lte IE 8]>
    <!-- Some div saying sorry or calling js function or whatever -->
<![endif]-->
于 2013-03-07T15:53:56.310 回答
0

您可以使用 htaccess 来阻止 MSIE

<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase / 

RewriteCond %{HTTP_USER_AGENT} MSIE 
RewriteCond %{REQUEST_FILENAME} !ban_ie.php 
RewriteRule .* /ban_ie.php [L] 

RewriteCond %{HTTP_USER_AGENT} MSIE 
RewriteCond %{REQUEST_FILENAME} !ban_ie.php 
RewriteRule .* /ban_ie.php [L] 
</IfModule>

或者你可以使用 php 脚本

<?php
ob_start();
?>
<html>
<head>
<style type="text/css">
* {
margin:0;
padding:0;
height:100%;
}
#mydiv {
position:absolute;
width:400px;
height:90px;
text-align:center;
top:50%;
left:50%;
margin-top:-40px;
margin-left:-200px;
border:solid 2px red;
padding-top:30px;
background:#ffff00;
font-weight:bold;
}
</style>
</head>
<body>
<div id="mydiv">
<?php
$browser = $_SERVER['HTTP_USER_AGENT'];
if(strstr($browser, "MSIE"))
{
   echo"BG: Свалете си Mozilla Firefox за да влезнете в сайта  EN: Download Mozilla Firefox to enter website <br /> <b><a href='http://www.mozilla.com/en-US/firefox/'>Mozilla Firefox</a></b>";
}
elseif (strstr($browser, "Opera"))
{
   echo"Свалете си мозилла <br /> <b><a href='http://www.mozilla.com/en-US/firefox/'>Mozilla Firefox</a></b>";
}
else {
   header("Location: http://muonline-bg.eu/");
}
?>
</div>
</body>
</html>
于 2014-11-11T08:48:00.057 回答
0

我相信避免与页面代码的其他部分发生冲突的最快和最安全的方法是......

<html>
<head>
<!--[if IE lte 8]><script>location.href="my_message.html";</script><[endif]-->
<!--your other head code-->    
</head>
<body>
<!--your body code-->
</body>
</html>
于 2020-02-21T22:26:57.090 回答