"),write("屏幕分辨率的宽度为:",screen.width,"
"),write("屏幕分辨率的高度为:",screen.height,"
"),write("屏幕可用工作区宽度为:",screen.availWidth,"
"),write("屏幕可用工作区高度为:",screen.availHeight,"
"),write("屏幕的色盘深度为:",screen.colorDepth,"
"),write("XHTML 标准:
网页可见区域的宽度为:",document.documentElement.clientWidth,"
"),write("网页可见区域的高度为:",document.documentElement.clientHeight,"
"),write("HTML 标准:
网页可见区域的宽度为:",document.body.clientWidth,"
"),write("网页可见区域的高度为:",document.body.clientHeight,"
");var arrDPI=new Array;if(window.screen.deviceXDPI)arrDPI[0]="X:"+window.screen.deviceXDPI+"PX",arrDPI[1]=" Y:"+window.screen.deviceYDPI+"PX";else{var tmpNode=document.createElement("DIV");tmpNode.style.cssText="width:1in;height:1in;position:absolute;left:0px;top:0px;z-index:99;visibility:hidden",document.body.appendChild(tmpNode),arrDPI[0]="横向:"+parseInt(tmpNode.offsetWidth)+"像素",arrDPI[1]=" 纵向:"+parseInt(tmpNode.offsetHeight)+"像素。",tmpNode.parentNode.removeChild(tmpNode)}document.write("
您的屏幕PPI(Pixels Per Inch)
"+arrDPI,"
");