[收集]JavaScript获取屏幕宽度高度信息

    技术2022-05-11  69

    < html > < body > < SCRIPT LANGUAGE = " JavaScript " > var   s  =   " 网页可见区域宽: " +  document.body.clientWidth;s  +=   " 网页可见区域高: " +  document.body.clientHeight;s  +=   " 网页正文全文宽: " +  document.body.scrollWidth;s  +=   " 网页正文全文高: " +  document.body.scrollHeight;s  +=   " 网页正文部分上: " +  window.screenTop;s  +=   " 网页正文部分左: " +  window.screenLeft;s  +=   " 屏幕分辨率的高: " +  window.screen.height;s  +=   " 屏幕分辨率的宽: " +  window.screen.width;s  +=   " 屏幕可用工作区高度: " +  window.screen.availHeight;s  +=   " 屏幕可用工作区宽度: " +  window.screen.availWidth;alert(s); </ SCRIPT > </ body > </ html >  

    最新回复(0)