例如,我们知道Iphone 5在x中的分辨率是640px,而它的devicePixelRatio是2.所以我猜screen.width是640px而window.innerWidth是320px(devicePixel / devicePixelRatio)。但我发现window.innerWidth等于screen.width,即320px。
如果我在PC上测试浏览器,我总能得到那个screen.width / window.innerWidth === devicePixelRatio
问题出在哪里?
是的,我正在使用chrome。