国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

?? ??

screen

screen ??? ?? ??? ?????.

screen.width: ?? ??(?? ??)

screen.height: ?? ?? ?? ??,

screen.colorDepth: 8, 16, 24? ?? ?? ???? ?????.

?????????


???? ??
||
<!DOCTYPE html> <html> <body> <h3>Your Screen:</h3> <script> document.write("窗口可以使用的屏幕寬高: "); document.write(window.screen.availWidth + "*" + screen.availHeight); document.write("<br>"); document.write("屏幕的寬高: "); document.write(screen.availWidth + "*" + window.screen.height); document.write("<br>"); document.write("用戶瀏覽器表示的顏色位數(shù): "); document.write(window.screen.colorDepth); document.write("<br>"); document.write("用戶瀏覽器表示的顏色位數(shù)(ps:IE不支持?親測(cè)好像支持唉): "); document.write(screen.pixelDepth); </script> <body> </body> </html>