주요 브라우저 전체에서 화면, 웹 페이지 및 브라우저 창 크기 얻기
모든 주요 브라우저에서 다양한 화면 및 창 요소의 크기를 캡처하려면 브라우저에서는 다음 기술 활용을 고려해보세요.
현재 화면 크기
screen 개체에 액세스하여 화면 너비와 높이를 검색합니다.
window.screen.height; window.screen.width;
현재 웹 페이지 크기
HTML 문서 크기의 경우 다음을 활용하세요. jQuery:
// Size of HTML document (similar to pageHeight/pageWidth) $(document).height(); $(document).width();
브라우저 창 크기
jQuery는 브라우저 창 크기도 검색할 수 있습니다.
// Size of browser viewport $(window).height(); $(window).width();
레거시 계산
레거시 브라우저의 경우 다음과 같은 조합을 사용하는 것이 일반적이었습니다. 치수를 얻기 위한 창 및 문서 속성:
windowHeight = window.innerHeight || document.documentElement.clientHeight; windowWidth = window.innerWidth || document.documentElement.clientWidth; pageHeight = document.body.scrollHeight; pageWidth = document.body.scrollWidth; pageX = window.pageXOffset || document.documentElement.scrollLeft; pageY = window.pageYOffset || document.documentElement.scrollTop; screenHeight = window.screen.availHeight || window.screen.height; screenWidth = window.screen.availWidth || window.screen.width; screenX = window.screen.availLeft || window.screen.x; screenY = window.screen.availTop || window.screen.y;
위 내용은 다양한 브라우저에서 화면, 웹 페이지 및 브라우저 창 크기를 어떻게 얻을 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!