js 에서 getBoundingClient Rect 의 역할 및 호환성 방안 에 대한 상세 한 설명

1.getBoundingClient Rect 의 역할
getBoundingClient Rect 는 창 에 대한 html 요 소 를 가 져 오 는 데 사 용 됩 니 다.
object.getBoundingClient Rect()실행 하기;요소 의 top,right,bottom,left,width,height 속성 을 얻 을 수 있 습 니 다.이 속성 들 은 대상 의 방식 으로 되 돌아 갑 니 다.
getBoundingClientRect()
이 방법 은 사각형 대상 을 되 돌려 줍 니 다.네 가지 속성 을 포함 합 니 다:left,top,right 와 bottom.각각 요소 의 각 변 과 페이지 상단 과 왼쪽 의 거 리 를 나타 낸다.

var box=document.getElementById('box'); //     

alert(box.getBoundingClientRect().top); //              

alert(box.getBoundingClientRect().right); //              

alert(box.getBoundingClientRect().bottom); //              

alert(box.getBoundingClientRect().left); //              
2.getBoundingClient Rect 상하 좌우 속성 값 설명
주로 left 와 bottom 은 설명 을 해 야 합 니 다.left 는 오른쪽 에서 페이지 의 가장 왼쪽 까지 의 거 리 를 말 합 니 다.bottom 은 밑 에서 페이지 꼭대기 까지 의 거 리 를 말 합 니 다.
그림 보기:
 
3.브 라 우 저 호환성
ie5 이상 지원 할 수 있 지만 조금씩 수정 해 야 합 니 다.
IE 67 의 left,top 은 2px 가 적 고 width,height 속성 이 없습니다.
4.getBoundingClient Rect 를 이용 하여 html 요 소 를 창 위치 에 집합 하 는 방법 을 작성 합 니 다.

<div id="test" style="width: 100px; height: 100px; background: #ddd;"></div>
<script>
 function getObjXy(obj){
  var xy = obj.getBoundingClientRect();
  var top = xy.top-document.documentElement.clientTop+document.documentElement.scrollTop,//document.documentElement.clientTop  IE67    2,          0
   bottom = xy.bottom,
   left = xy.left-document.documentElement.clientLeft+document.documentElement.scrollLeft,//document.documentElement.clientLeft  IE67    2,          0
   right = xy.right,
   width = xy.width||right - left, //IE67   width   right - left  
   height = xy.height||bottom - top;

  return {
   top:top,
   right:right,
   bottom:bottom,
   left:left,
   width:width,
   height:height
  }
 }

 var test = getObjXy(document.getElementById('test'));
 alert("top:" + test.top + ", right:" + test.right + ", bottom:" + test.bottom + ", left:" + test.left);
</script>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기