1
<div id="example"></div>
2
<script>
3
txt = "<p>浏览器代号: " + navigator.appCodeName + "</p>";
4
txt += "<p>浏览器名称: " + navigator.appName + "</p>";
5
txt += "<p>浏览器版本: " + navigator.appVersion + "</p>";
6
txt += "<p>启用Cookies: " + navigator.cookieEnabled + "</p>";
7
txt += "<p>硬件平台: " + navigator.platform + "</p>";
8
txt += "<p>用户代理: " + navigator.userAgent + "</p>";
9
txt += "<p>用户代理语言: " + navigator.systemLanguage + "</p>";
10
document.getElementById("example").innerHTML = txt;
11
</script>