JavaScript学习进阶(2)
本例子代码用来实现浏览器类型判断。
浏览器类型判断
document.write("浏览器类型:"+navigator.appName+";浏览器版本:"+navigator.appVersion);
document.write("");
document.write("");
if(navigator.appName=="Microsoft Internet Explorer")
{
document.write("您使用的是IE浏览器");
}
else
{
document.write("您使用的不是IE浏览器");
}
附浏览器的详细信息
浏览器:navigator.appName
浏览器版本:navigator.appVersion
代码:navigator.appCodeName
平台:navigator.platform
Cookies 启用:navigator.cookieEnabled
浏览器的用户代理报头:navigator.userAgent
编辑推荐:
温馨提示:因考试政策、内容不断变化与调整,长理培训网站提供的以上信息仅供参考,如有异议,请考生以权威部门公布的内容为准! (责任编辑:长理培训)
点击加载更多评论>>