复制代码 代码如下:
javascript 获取 客户端信息 
复制代码 代码如下:
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(
)
   
 
   