8
(마이너스) 스크롤바없이 화면 너비를 얻는 방법?
요소가 있고 세로 스크롤 막대가없는 너비가 필요합니다. Firebug는 몸 너비가 1280px라고 말합니다. 다음 중 하나는 Firefox에서 잘 작동합니다. console.log($('.element').outerWidth() ); console.log($('.element').outerWidth(true) ); $detour = $('.child-of-element').offsetParent(); console.log( $detour.innerWidth() ); 그들은 모두 내가 찾고있는 값인 1263px를 반환 합니다. 그러나 다른 모든 브라우저는 1280px를 제공합니다 . (!) 세로 스크롤바없이 전체 화면 너비를 얻는 …
102
jquery
cross-browser
width