任何人都可以推荐一个优雅的“没有IE6支持”脚本?

时间:2010-12-06 16:36:38

标签: javascript html css internet-explorer-6

我想善意和优雅地告诉那些使用Internet Explorer 6的人在他们来到我的网站时升级他们的浏览器或将他们的计算机粉碎成小块。

6 个答案:

答案 0 :(得分:20)

答案 1 :(得分:2)

答案 2 :(得分:1)

这是我个人的最爱:http://ie6update.com/

看起来像是一个合法的Microsoft更新或Active X提示。这应该欺骗恐龙适应......

答案 3 :(得分:0)

<?php
$ua = browser_info();

if (($ua['msie']==6.0)) {
    echo "PUT HERE YOUR TEXT THAT SHOULD BE DISPLAYED IN IE6";
    }else{
        echo "";
        }

?>

答案 4 :(得分:0)

在您的网页上需要div:

<div class='noAccess'>
</div>

和jQuery:

var IE6 = (navigator.userAgent.indexOf("MSIE 6") >= 0) ? true : false;
if (IE6) {

    $(function() {
        $("<div class='noAccess'>")
            .css({
                'height': $(window).height()
            })
            .appendTo("body");

            $("<div class='noAccessMessage'><p class='h1'>Sorry! This site doesn't support Internet Explorer 6.</p><p class='h4'>To continue, please update your browser to the latest version of FireFox or Internet Explorer using the links below.</p><table width='100%' cellspacing='0' cellpadding='0'><tr><td align='center' valign='top'>FireFox <a href='http://www.mozilla.com' target='_blank'><img src='images/Firefox-32.png' alt='FireFox' border='0' /></a><br />recommended</td><td align='center' valign='top'>Internet Explorer <a href='http://www.microsoft.com/nz/windows/internet-explorer/default.aspx' target='_blank'><img src='images/IE-32.png' alt='Internet Explorer' border='0' /><a/></td></tr></table>")
            .appendTo("body");
    });
}

答案 5 :(得分:0)