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