个人小站

[Javascript]浏览器嗅探

字数统计: 66阅读时长: 1 min
2021/08/10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
document.writeln("Useragent="+window.navigator.userAgent+"<br>");
document.writeln("浏览器原型="+window.navigator.appName+"<br>");
document.writeln("浏览器代码名="+window.navigator.appCodeName+"<br>");
document.writeln("浏览器平台及版本信息="+window.navigator.appVersion+"<br>");
document.writeln("浏览器语言="+window.navigator.language+"<br>");
document.writeln("是否开启cookies="+window.navigator.cookieEnabled+"<br>");
document.writeln("CPU等级="+window.navigator.cpuClass+"<br>");
for(i=0;i<window.navigator.plugins.length;i++){
document.writeln("插件"+i+"="+window.navigator.plugins[i].name+"<br>");
document.writeln("插件信息"+i+"="+window.navigator.plugins[i].description+"<br>");}
document.writeln("是否处于联网模式="+window.navigator.onLine+"<br>");
document.writeln("系统默认语言="+window.navigator.systemLanguage+"<br>");
document.writeln("软件平台="+window.navigator.platform+"<br>");
document.writeln("系统设置语言="+window.navigator.userLanguage+"<br>");
document.writeln("当前浏览器页面编码:"+document.characterSet+"<br>");

原文作者:ted423

原文链接:http://ted423.github.io/Code/WWW/%E6%B5%8F%E8%A7%88%E5%99%A8%E5%97%85%E6%8E%A2/

发表日期:August 10th 2021, 8:31:48 pm

更新日期:January 1st 2015, 12:00:00 am

版权声明:本站原创内容(一般是语句不通顺的那种)采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可,转载内容以及不带个人观点的分享不在此例,摘抄有Wiki的内容的文章统一根据Wiki采用 CC BY-SA 3.0

CATALOG