[크기]
가로 : offsetWidth
세로 : offsetHeight
[위치]
다음은 위치 구하는 함수
function findPos(obj)
{
var curLeft = curTop = 0;
if (obj.offsetParent) {
do {
curLeft += obj.offsetLeft;
curTop += obj.offsetTop;
} while (obj = obj.offsetParent);
}
return {'left': curLeft, 'top': curTop};
}
{
var curLeft = curTop = 0;
if (obj.offsetParent) {
do {
curLeft += obj.offsetLeft;
curTop += obj.offsetTop;
} while (obj = obj.offsetParent);
}
return {'left': curLeft, 'top': curTop};
}
'JavaScript' 카테고리의 다른 글
[JavaScript] 한줄짜리 thousand separate (number_format) (0) | 2012.05.04 |
---|---|
[jQuery] iframe의 body select (마우스 드래그로 움직이기) (0) | 2011.10.11 |
[JavaScript] PHP의 pack() 함수 흉내내기 (0) | 2010.12.03 |
[JavaScript] HTML페이지에서 드래그로 문자열 선택 금지 (disable text selection include firefox) (0) | 2010.11.19 |
[JavaScript] 다차원 배열 정렬 (multiple array sort) (4) | 2010.11.02 |