jQuery 도움말 CSS 사이즈(5)outerHeight,outerWidth

1074 단어 jQueryCSS 사이즈
요 소 를 잘 제어 하여 우리 의 요 구 를 만족 시 킬 수 있 도록 outerHeight(options)와 outerWidth(options)를 통 해 이 부분의 높이 와 너 비 를 얻 을 수 있 습 니 다.outerHeight(options)는 첫 번 째 일치 하 는 요소 의 외부 높이 를 가 져 옵 니 다.이 방법 은 보 이 는 요소 와 숨겨 진 요소 에 모두 유효 합 니 다.반환 값:Integer 인자:options(Boolean):(false)가 true 로 설정 되 었 을 때 사 이 드 거 리 를 계산 합 니 다.예제:첫 번 째 단락 의 외부 높이 를 가 져 옵 니 다.HTML 코드:

Hello

2nd Paragraph

jQuery 코드:var p=$("p:first");$(")p:last").text( "outerHeight:" + p.outerHeight() + " , outerHeight(true):" + p.outerHeight(true) ); 결과:

Hello

outerHeight:35,outerHeight(true):55

outerWidth(options)에서 첫 번 째 일치 하 는 요소 의 외부 너비(기본 값 은 보 백 과 테두리 포함)를 가 져 옵 니 다.이 방법 은 보 이 는 요소 와 숨겨 진 요소 에 모두 유효 합 니 다.반환 값:Integer 인자:options(Boolean):(false)가 true 로 설정 되 었 을 때 사 이 드 거 리 를 계산 합 니 다.예제:첫 번 째 단락 의 외부 폭 을 가 져 옵 니 다.HTML 코드:

Hello

2nd Paragraph

jQuery 코드:var p=$("p:first");$(")p:last").text( "outerWidth:" + p.outerWidth() + " , outerWidth(true):" + p.outerWidth(true) ); 결과:

Hello

outerWidth:65,outerWidth(true):85

좋은 웹페이지 즐겨찾기