1. Sceen lấy width và height của màn hình

Chúng ta sử dụng thuộc tính screen.width để lấy chiều rộng và screen.height để lấy chiều cao của màn hình, kết quả sẽ trả về định dạng Pixels.

document.write("With screen: " + screen.width + "<br/>");
document.write("Height screen: " + screen.height);


Ngoài ra để lấy chiều rộng và chiều cao mà không tính các tools tính năng của trình duyệt thì bạn sử dụng screen.availWidth và screen.availHeight.

document.write("With Available screen: " + screen.availWidth + "<br/>");
document.write("Height Available screen: " + screen.availHeight);

2. Screen lấy Color Depth của screen

Để lấy color depth của screen thì ta sử dụng thuộc tính screen.colorDepth.


document.write("Color Depth: " + screen.colorDepth);

3. Lấy số Pixel depth của screen

Để lấy Pixel depth của màn hình thì ta sử dụng thuộc tính screen.pixelDepth.

document.write("Pixel Depth: " + screen.pixelDepth);