我有一个网站,它与 IE8 无关。我目前有一个网站显示一个横幅,引导访问者升级 IE。我想做更多...
我想做的是,除了显示“抱歉您的浏览器不符合查看此站点的要求”之类的消息之外,还显示该横幅。我不希望它加载任何其他页面内容。
有没有办法说不要在 IE if 语句中加载页面的其余部分?
<!--[if lt IE 8]>
<div style=' clear: both; text-align:center; position: relative;'>
<a href="http://windows.microsoft.com/en-US/internet-explorer/products/ie/home?ocid=ie6_countdown_bannercode"><img src="http://storage.ie6countdown.com/assets/100/images/banners/warning_bar_0000_us.jpg" border="0" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today." /></a>
</div>
-- Here is where I want to say DON'T LOAD ANYTHING ELSE.
-- Maybe automatically redirect to another blank page?
<![endif]-->