티스토리 뷰
.innerHeight()
픽셀의 위쪽과 아래쪽 패딩을 포함한 요소의 높이를 반환한다.
윈도우와 문서 개체에 적용되지 않는다. 윈도우와 문서 개체에 대해 사용할 땐 .height()를 사용한다.
사용예
<!DOCTYPE html> <html> <head> <style>p { margin:10px;padding:5px;border:2px solid #666; }</style> <script src="http://code.jquery.com/jquery-1.4.4.js"></script> </head> <body> <p>Hello</p><p></p> <script>var p = $("p:first"); $("p:last").text( "innerHeight:" + p.innerHeight() );</script> </body> </html>
.innerWidth()
픽셀의 왼쪽과 오른쪽 패딩을 포함한 요소의 높이를 반환한다.
윈도우와 문서 개체에 적용되지 않는다. 윈도우와 문서 개체에 대해 사용할 땐 .width()를 사용한다.
사용예
<!DOCTYPE html> <html> <head> <style>p { margin:10px;padding:5px;border:2px solid #666; } </style> <script src="http://code.jquery.com/jquery-1.4.4.js"></script> </head> <body> <p>Hello</p><p></p> <script>var p = $("p:first"); $("p:last").text( "innerWidth:" + p.innerWidth() );</script> </body> </html>
'jQuery' 카테고리의 다른 글
Attribute Contains Selector [name*="value"] (0) | 2010.12.30 |
---|---|
Attribute Contains Word Selector [name~="value"] (0) | 2010.12.30 |
.addClass() .removeClass() (0) | 2010.12.28 |
.fadeIn() .fadeOut() (0) | 2010.12.28 |
.show() .hide() (0) | 2010.12.28 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크