美文网首页
js获取电脑屏幕宽高(适配)

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

作者: hai_phon | 来源:发表于2019-04-08 10:47 被阅读0次
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获取电脑屏幕宽高(适配)

      本文链接:https://www.haomeiwen.com/subject/rnfuiqtx.html