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

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;
}

你可能感兴趣的:(js获取电脑屏幕宽高(适配))