ホームページ  >  記事  >  ウェブフロントエンド  >  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("
")
ドキュメント.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 までご連絡ください。