>  기사  >  웹 프론트엔드  >  Javascript는 클라이언트 브라우저 유형 code_javascript 기술을 결정합니다.

Javascript는 클라이언트 브라우저 유형 code_javascript 기술을 결정합니다.

WBOY
WBOY원래의
2016-05-16 18:33:351141검색
코드 복사 코드는 다음과 같습니다.



클라이언트 정보를 가져오는 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("
")
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.