菜鸟学堂
在线运行
源代码
<!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>
运行结果
在线运行
菜鸟学堂 edu.jb51.net