2

我有一个问题,也许它在这个网站上是重复的,但我找不到它!

我想显示此消息

"Please open this website in firefox and you can download Mozilla Firefox from here"

当用户在 IE 中打开我的网站时。

怎么做?

提前致谢。

4

2 回答 2

2

你可以使用条件检查

<!--[if IE]>
please open this web in firefox and you can download Mozilla Firefox from <a href='here'>here</a>
<![endif]-->

或者您可以尝试添加 js/编程检查

于 2013-04-16T07:13:52.443 回答
1

如果您更喜欢 Javascript,可以检查 userAgent。

if (navigator.userAgent.indexOf('MSIE')>0) {
    document.write('do something');
};

MSIE 是 Microsoft Internet Explorer 的指标

于 2013-04-16T17:54:57.650 回答