`

js获取浏览器版本信息

阅读更多
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>test</title>
</head>

<body>
<body> 
<script type="text/javascript">

document.write("<p>浏览器:") 
document.write(navigator.appName + "</p>") 
 
document.write("<p>浏览器版本:") 
document.write(navigator.appVersion + "</p>") 
 
document.write("<p>代码:") 
document.write(navigator.appCodeName + "</p>") 
 
document.write("<p>平台:") 
document.write(navigator.platform + "</p>") 
 
document.write("<p>Cookies 启用:") 
document.write(navigator.cookieEnabled + "</p>") 
 
document.write("<p>浏览器的用户代理报头:") 
document.write(navigator.userAgent + "</p>") 
</script> 
</body>
</body>
</html>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics