IE浏览器打开时如何显示消息?

时间:2013-04-16 07:09:37

标签: javascript html internet-explorer

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

我想显示此消息

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

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

怎么做?

提前致谢。

2 个答案:

答案 0 :(得分:2)

您可以使用条件检查

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

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

答案 1 :(得分:1)

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

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

MSIE是Microsoft Internet Explorer的指标