브라우저 화면의 특정한 위치의 좌표값 xy 값 가져오기 > JavaScript

본문 바로가기

사이트 내 전체검색

뒤로가기 JavaScript

브라우저 화면의 특정한 위치의 좌표값 xy 값 가져오기

페이지 정보

작성자 최고관리자 작성일 21-02-10 17:38 조회 8,963 댓글 0

본문

function xy(x) {
    o = document.getElementById(x);
    var l =o.offsetLeft; var t = o.offsetTop;
    while (o=o.offsetParent)
            l += o.offsetLeft;
    o = document.getElementById(x);
    while (o=o.offsetParent)
            t += o.offsetTop;
    return [l,t];
 }

댓글목록 0

등록된 댓글이 없습니다.

Copyright © beautipia.co.kr. All rights reserved.

contact : webmaster@beautipia.co.kr

PC 버전으로 보기