문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
wiki:javascript:jquery:jquery_note:jquery_dimensions [2021/04/19 08:43] emblim98 |
wiki:javascript:jquery:jquery_note:jquery_dimensions [2023/01/13 18:44] (현재) |
||
---|---|---|---|
줄 1: | 줄 1: | ||
======jQuery - Dimensions====== | ======jQuery - Dimensions====== | ||
<WRAP left notice 70%> | <WRAP left notice 70%> | ||
- | * description : jQuery - css() Method | + | * description : jQuery - Dimensions |
* author | * author | ||
* email : shlim@repia.com | * email : shlim@repia.com | ||
줄 7: | 줄 7: | ||
</ | </ | ||
<WRAP clear></ | <WRAP clear></ | ||
+ | \\ | ||
+ | ====Ref==== | ||
+ | [[https:// | ||
\\ | \\ | ||
%%jQuery%%를 사용하면 요소와 브라우저 창의 크기(dimensions, | %%jQuery%%를 사용하면 요소와 브라우저 창의 크기(dimensions, | ||
줄 19: | 줄 22: | ||
=====jQuery Dimensions===== | =====jQuery Dimensions===== | ||
+ | {{: | ||
+ | =====jQuery widh() and height() Methods===== | ||
+ | '' | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | 다음 예제는 지정된 '' | ||
+ | ====예제==== | ||
+ | <code jquery> | ||
+ | $(document).ready(function () { | ||
+ | $(" | ||
+ | var txt = ""; | ||
+ | txt += "Width of div: " + $("# | ||
+ | txt += " | ||
+ | $("# | ||
+ | }); | ||
+ | }); | ||
+ | </ | ||
+ | =====jQuery innerWidth() and innerHeight() Methods===== | ||
+ | '' | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | 다음 예제는 지정된 '' | ||
+ | ====예제==== | ||
+ | <code jquery> | ||
+ | $(document).ready(function () { | ||
+ | $(" | ||
+ | var txt = ""; | ||
+ | txt += "Width of div: " + $("# | ||
+ | txt += " | ||
+ | txt += "Inner width of div: " + $("# | ||
+ | txt += "Inner height of div: " + $("# | ||
+ | $("# | ||
+ | }); | ||
+ | }); | ||
+ | </ | ||
+ | |||
+ | =====jQuery outerWidth() and outerHeight() Methods===== | ||
+ | '' | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | 다음 예제는 지정된 '' | ||
+ | |||
+ | ====예제==== | ||
+ | <code jquery> | ||
+ | $(document).ready(function () { | ||
+ | $(" | ||
+ | var txt = ""; | ||
+ | txt += "Width of div: " + $("# | ||
+ | txt += " | ||
+ | txt += "Outer width of div: " + $("# | ||
+ | txt += "Outer height of div: " + $("# | ||
+ | $("# | ||
+ | }); | ||
+ | }); | ||
+ | </ | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | '' | ||
+ | |||
+ | ====예제==== | ||
+ | <code jquery> | ||
+ | $(document).ready(function () { | ||
+ | $(" | ||
+ | var txt = ""; | ||
+ | txt += "Width of div: " + $("# | ||
+ | txt += " | ||
+ | txt += "Outer width of div (margin included): " + $("# | ||
+ | txt += "Outer height of div (margin included): " + $("# | ||
+ | $("# | ||
+ | }); | ||
+ | }); | ||
+ | </ | ||
+ | |||
+ | =====jQuery More width() and height()===== | ||
+ | 다음 예제는 문서(%%HTML%% 문서)와 창(브라우저 viewport)의 너비와 높이를 반환합니다.\\ | ||
+ | <code jquery> | ||
+ | $(document).ready(function () { | ||
+ | $(" | ||
+ | var txt = ""; | ||
+ | txt += " | ||
+ | txt += " | ||
+ | txt += " | ||
+ | txt += " | ||
+ | alert(txt); | ||
+ | }); | ||
+ | }); | ||
+ | </ | ||
+ | \\ | ||
+ | 다음 예제는 지정된 '' | ||
+ | ====예제==== | ||
+ | <code jquery> | ||
+ | $(document).ready(function () { | ||
+ | $(" | ||
+ | $("# | ||
+ | }); | ||
+ | }); | ||
+ | </ | ||
줄 31: | 줄 135: | ||
모든 %%jQuery%% %%HTML%% 메서드에 대한 전체 개요를 보려면, [[https:// | 모든 %%jQuery%% %%HTML%% 메서드에 대한 전체 개요를 보려면, [[https:// | ||
- | {{tag> | + | {{tag> |