예를 들어.
<input id ="test" value="이건 테스트여요" />
라는 개체의 좌표를 구하고자 한다면,
<script>
obj = document.getElementById("test");
left = obj.getBoundingClientRect().left;
top = obj.getBoundingClientRect().top;
bottom = obj.getBoundingClientRect().bottom;
right = obj.getBoundingClientRect().right;
</script>
뭐 요런식으로 구해지더라.....
'HTML/JS/CSS' 카테고리의 다른 글
[JS] KeyCode 값. (2) | 2009.11.16 |
---|---|
[JS] merge Cells (세로 cell만 가능) (0) | 2009.10.19 |
[HTML] INPUT box에 영문, 한글 입력 기본으로 설정하기. (0) | 2009.10.19 |