Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để trả lại độ sâu pixel của màn hình trong JavaScript?

Để trả lại độ sâu pixel của màn hình, hãy sử dụng screen.pixelDepth thuộc tính trong JavaScript.

Ví dụ

Bạn có thể thử chạy đoạn mã sau để lấy độ sâu pixel trong JavaScript.

<!DOCTYPE html>
<html>
   <body>
      <script>
         document.write("Screen width: " + screen.width);
         document.write("<br>Screen height: " + screen.height);
         document.write("<br>Pixel Depth: " + screen.pixelDepth);
      </script>
   </body>
</html>