Home  >  Article  >  Backend Development  >  不同种类的浏览器分辨率是不是不一样

不同种类的浏览器分辨率是不是不一样

WBOY
WBOYOriginal
2016-06-23 14:15:491355browse


//获得分辨率宽度

$width.="<script>"; <br /> $width.="document.write(window.screen.width);"; <br /> $width.="</script>";  
 
//获得分辨率高度   

$height.="<script>"; <br /> $height.="document.write(window.screen.height);"; <br /> $height.="</script>";  
echo "浏览器分辨率为:".$width."x".$height;
?>

我是用上面的代码来获取客服端的分辨率的,在本地测试了,发现取得IE浏览器的分辨率(跟电脑屏幕设置的都不一样)跟其他的都不一样。

请问,这是我的代码有问题,还是本来就是这样呢?


回复讨论(解决方案)

没具体测试过,凭感觉有点差异
等高人解答

没有人

你的是ie几 在ie8  ff 5.0 chrome 12 下都正常

我在IE7、IE8上都测试过,与chrome 12都不一样 

我的屏分辨率是1920*1080,但是我通过document.write(
"屏幕分辨率为:"+screen.width+"*"+screen.height},得到的值却是1536*864,放在其他电脑上就能得到和屏幕分辨率一样的值,这是为什么啊?

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