我有一个问题,也许它在这个网站上是重复的,但我找不到它!
我想显示此消息
"Please open this website in firefox and you can download Mozilla Firefox from here"
当用户在 IE 中打开我的网站时。
怎么做?
提前致谢。
我有一个问题,也许它在这个网站上是重复的,但我找不到它!
我想显示此消息
"Please open this website in firefox and you can download Mozilla Firefox from here"
当用户在 IE 中打开我的网站时。
怎么做?
提前致谢。
你可以使用条件检查
<!--[if IE]>
please open this web in firefox and you can download Mozilla Firefox from <a href='here'>here</a>
<![endif]-->
或者您可以尝试添加 js/编程检查
如果您更喜欢 Javascript,可以检查 userAgent。
if (navigator.userAgent.indexOf('MSIE')>0) {
document.write('do something');
};
MSIE 是 Microsoft Internet Explorer 的指标