Home >Web Front-end >JS Tutorial >Javascript determines client browser type code_javascript skills

Javascript determines client browser type code_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:33:351201browse
Copy code The code is as follows:



JavaScript to get client information
Copy Code The code is as follows:

document.write("Screen resolution: ")
document.write(screen.width "*" screen.height)
document.write("
")
document.write("Available view area: ")
document.write(screen.availWidth "*" screen.availHeight)
document .write("
")
document.write("Color depth: ")
document.write(screen.colorDepth)
document.write("
")
document.write("Buffer depth: ")
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( "
")
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("
")
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn