我正在使用 javascript 查看 cookie 与设备像素的比率。在 IE 设备像素比输出未定义,所以我想用一个条件来表示,如果未定义设置为 1。
我一直在尝试几种不同的方法,但认为这会奏效:
<script>
if (window.devicePixelRatio==undefined) {
document.cookie='screenpixelratio='1'; path=/';location.reload(true);
} else {
document.cookie='screenpixelratio='+window.devicePixelRatio+'; path=/';location.reload(true);
}
</script>
但是,我不能让它输出 1。
有谁知道我怎么能做到这一点?