獲取屏幕的寬高
阿新 • • 發佈:2017-10-20
client defined efi nth logs cli return height width
function client(){ if(window.innerHeight !== undefined){ return { "width": window.innerWidth, "height": window.innerHeight } }else if(document.compatMode === "CSS1Compat"){ return { "width": document.documentElement.clientWidth,"height": document.documentElement.clientHeight } }else{ return { "width": document.body.clientWidth, "height": document.body.clientHeight } } }
獲取屏幕的寬高