js获取屏幕参数
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>屏幕参数
</title>
</head>
<body>
<h3>你的屏幕:
</h3>
<script>
document.write("总宽度/高度: ");
document.write(screen.width + "*" + screen.height);
document.write("<br>");
document.write("可用宽度/高度: ");
document.write(screen.availWidth + "*" + screen.availHeight);
document.write("<br>");
document.write("颜色深度: ");
document.write(screen.colorDepth);
document.write("<br>");
document.write("颜色分辨率: ");
document.write(screen.pixelDepth);
</script>
</body>
</html>
转载请注明原文地址: https://win8.8miu.com/read-12687.html