I'm

Developer, Designer, Photographer

GET IN TOUCH

  • Buk-gu, Busan, Republic of Korea
  • ungdoli0916@naver.com
  • Kakao ID : Ungdoli
Your message has been sent. Thank you!
(즐거웅코드) 제이쿼리 특정 객체 X축 위치 가져오기

· 즐거'웅' 코드 (Source)/HTML & CSS & JAVASCRIPT
2021. 6. 29. 18:18

반응형
jQuery
1
2
3
<script>
    $("(대상)").offset().left;
</script>
예제 소스
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
 
<style>
    .test_obj {
        position: absolute;
        top: 50px;
        left: 100px;
        display: inline-block;
        width: 100px;
        height: 100px;
        background-color: #eeeeee;
    }
</style>
 
<div class="test_obj"></div>
 
<script>
    var tmp = $(".test_obj").offset().left;
    alert("객체의 X 위치 값 = " + tmp);
</script>
구현 예시
반응형