时间:2021-07-01 10:21:17 帮助过:25人阅读
欢迎进入Java社区论坛,与200万技术人员互动交流 >>进入 本例子代码用来实现浏览器类型判断。 html head title浏览器类型判断/title /head body script type="text/javascript" document.write("浏览器类型:"+navigator.appName+"/br;浏览器版本:"+navigat
欢迎进入Java社区论坛,与200万技术人员互动交流 >>进入
本例子代码用来实现浏览器类型判断。
document.write("浏览器类型:"+navigator.appName+";浏览器版本:"+navigator.appVersion);
document.write("");
document.write("");
if(navigator.appName=="Microsoft Internet Explorer")
{
document.write("您使用的是IE浏览器");
}
else
{
document.write("您使用的不是IE浏览器");
}
script>
附浏览器的详细信息:
浏览器:navigator.appName
浏览器版本:navigator.appVersion
代码:navigator.appCodeName
平台:navigator.platform
Cookies 启用:navigator.cookieEnabled
浏览器的用户代理报头:navigator.userAgent