일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- SAP
- default parameter
- abap excel format
- abap
- 부모클래스
- DOM set
- Reference
- VMware
- 자식클래스
- USB 부팅 디스크
- jQuery
- function overloading
- 마운틴 라이언 클린 설치
- DOM get
- SESSION MEMEORY
- 맥북 프로
- ABAP FUNCTION
- C++
- 함수 오버로딩
- New & Delete(동적할당)
- 가상머신
- 상속
- 디폴트 매개변수
- IS-A
- ABAP 세션 메모리 관리
- ABAP 날짜 함수
- abap execl text format
- SAP MEMROY MANAGE
- 참조자
- SAP excel format
- Today
- Total
IT스러운 공간
[jQuery] Dimensions 본문
1. .width()와 .height()
: .width() - 요소의 폭(padding, border, margin 포함하지 않음)을 설정하거나 반환
: .height() - 요소의 높이(padding, border, margin 포함하지 않음)를 설정하거나 반환
: 예) $("button").click(function() {
var txt = "";
txt += "Width : " + $("div1").width() + "</br>";
txt += "Height : " + $("div1").height() + "</br>";
$("#div1").html(txt);
});
2. .innerWidth()와 .innerheight()
: .innerWidth() - 요소의 padding을 포함한 너비를 반환
: .innerHeight() - 요소의 padding을 포함한 높이는 반환
: 예) $("button").click(function() {
var txt = "";
txt += "innerWidth : " + $("div1").innerWidth() + "</br>";
txt += "innerHeight : " + $("div1").innerHeight() + "</br>";
$("#div1").html(txt);
});
3. .outerWidth()와 .outerHeight()
: .outerWidth() - 요소의 padding과 border를 포함한 너비를 반환
: .outerHeight() - 요소의 padding과 border을 포함한 높이는 반환
: 예) $("button").click(function() {
var txt = "";
txt += "outerWidth : " + $("div1").outerWidth() + "</br>";
txt += "outerHeigh t: " + $("div1").outerHeight() + "</br>";
$("#div1").html(txt);
});
4. outerWidth(true)와 .outerHeight(true)
: .outerWidth(true) - 요소의 padding과 border, margin을 포함한 너비를 반환
: .outerHeight(true) - 요소의 padding과 border, margin 포함한 높이는 반환
: 예) $("button").click(function() {
var txt = "";
txt += "outerWidth(+margin) : " + $("div1").outerWidth(true) + "</br>";
txt += "outerHeight(+margin) : " + $("div1").outerHeight(true) + "</br>";
$("#div1").html(txt);
});
$("button").click(function(){
var txt = "";
txt += "Document width/height : " + $(document).width();
txt += "x " + $(document).height() + "\n";
txt += "Window width/height : " + $(window).width();
txt += "x " + $(window).height();
alert(txt);
});
'기타 > jQuery' 카테고리의 다른 글
[jQuery] DOM의 조작1 : Get, Set (0) | 2024.01.26 |
---|---|
[jQuery] Offset (0) | 2024.01.26 |
[jQuery] CSS (0) | 2024.01.26 |
[jQeury] 속성 Attributes (0) | 2024.01.26 |
[jQuery] 폼 필터 선택자 : Form filters (0) | 2024.01.26 |