클라이언트 정보를 가져오는 JavaScript
document.write("화면 해상도: ")
document.write(screen.width "*" screen.height)
document.write("
")
document.write("사용 가능한 보기 영역: ")
document.write(screen.availWidth "*" screen.availHeight)
document .write ("
")
document.write("색상 심도: ")
document.write(screen.colorDepth)
document.write("
")
document.write("버퍼 깊이: ")
document.write(screen.bufferDepth)
document.write("
")
document.write(" DeviceXDPI: ")
document.write(screen.deviceXDPI)
document.write("
")
document.write("DeviceYDPI: ")
document.write( screen. deviceYDPI)
document.write("
")
document.write("LogicalXDPI: ")
document.write(screen.logicalXDPI)
document.write( "< ;br />")
document.write("LogicalYDPI: ")
document.write(screen.logicalYDPI)
document.write("
")
document .write("FontSmoothingEnabled: ")
document.write(screen.fontSmoothingEnabled)
document.write("
")
document.write("PixelDepth: ")
document.write(screen.pixelDepth)
document.write("
")
document.write("UpdateInterval: ")
document.write(screen.updateInterval)
document.write("
")