xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>JavaScript 显示浏览器语言版本示例 - 基础教程(div.cn)</title>
<body>
<p>单击按钮以显示浏览器发送到服务器的用户代理标头:</p>
<button onclick="myFunc()">点我试试</button>
<p id="output"></p>
<script>
function myFunc() {
var x = navigator.userAgent;
document.querySelector("#output").innerHTML = x;
}
</script>
</body>
</html>