js获取电脑屏幕宽高(适配)

2019-04-08  本文已影响0人  hai_phon
function getScreenWidth() {
    var w=window.innerWidth
|| document.documentElement.clientWidth
|| document.body.clientWidth;
    return w;
}

function getScreenHeight() {`
    var h=window.innerHeight
|| document.documentElement.clientHeight
|| document.body.clientHeight;
}
上一篇 下一篇

猜你喜欢

热点阅读