本文介绍了使用JavaScript来检测浏览器类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图使用这一行来检测浏览器类型:IE或Firefox。 alert(isBrowser(Microsoft));
但是我什么也没得到,警报甚至没有弹出。不知道我在做什么错。
检测浏览器类型的最佳实践方法是什么?
解决方案
我希望这有助于:
(这是一个很长的脚本,所以我不想在这里发表)
I'm trying to use this line to detect browser type: IE or Firefox.
alert(isBrowser("Microsoft"));
but I get absolutely nothing, the alert doesn't even pop up. Not sure what I'm doing wrong.
What would be the best practice way to detect browser type?
解决方案
I hope this helps:
http://www.quirksmode.org/js/detect.html
(it's a long script, so i don't want to post it here)
这篇关于使用JavaScript来检测浏览器类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!