======jQuery - Dimensions======
$(document).ready(function () {
$("button").click(function () {
var txt = "";
txt += "Width of div: " + $("#div1").width() + "
";
txt += "Height of div: " + $("#div1").height();
$("#div1").html(txt);
});
});
=====jQuery innerWidth() and innerHeight() Methods=====
''innerWidth()'' 메서드는 요소의 너비를 반환합니다(padding 포함).\\
\\
''innerHeight()'' 메서드는 요소의 높이를 반환합니다(padding 포함).\\
\\
다음 예제는 지정된 ''%%
$(document).ready(function () {
$("button").click(function () {
var txt = "";
txt += "Width of div: " + $("#div1").width() + "";
txt += "Height of div: " + $("#div1").height() + "";
txt += "Inner width of div: " + $("#div1").innerWidth() + "";
txt += "Inner height of div: " + $("#div1").innerHeight();
$("#div1").html(txt);
});
});
=====jQuery outerWidth() and outerHeight() Methods=====
''outerWidth()'' 메서드는 요소의 너비를 반환합니다 (padding 및 border 포함).\\
\\
''outerHeight()'' 메서드는 요소의 높이를 반환합니다 (padding 및 border 포함).\\
\\
다음 예제는 지정된 ''%%
$(document).ready(function () {
$("button").click(function () {
var txt = "";
txt += "Width of div: " + $("#div1").width() + "";
txt += "Height of div: " + $("#div1").height() + "";
txt += "Outer width of div: " + $("#div1").outerWidth() + "";
txt += "Outer height of div: " + $("#div1").outerHeight();
$("#div1").html(txt);
});
});
\\
''outerWidth(true)'' 메서드는 요소의 너비 (padding, border 및 margin 포함)를 반환합니다.\\
\\
''outerHeight(true)'' 메서드는 요소의 높이 (padding, border 및 margin 포함)를 반환합니다.\\
====예제====
$(document).ready(function () {
$("button").click(function () {
var txt = "";
txt += "Width of div: " + $("#div1").width() + "";
txt += "Height of div: " + $("#div1").height() + "";
txt += "Outer width of div (margin included): " + $("#div1").outerWidth(true) + "";
txt += "Outer height of div (margin included): " + $("#div1").outerHeight(true);
$("#div1").html(txt);
});
});
=====jQuery More width() and height()=====
다음 예제는 문서(%%HTML%% 문서)와 창(브라우저 viewport)의 너비와 높이를 반환합니다.\\
$(document).ready(function () {
$("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);
});
});
\\
다음 예제는 지정된 ''%%
$(document).ready(function () {
$("button").click(function () {
$("#div1").width(500).height(500);
});
});
=====jQuery HTML Reference=====
모든 %%jQuery%% %%HTML%% 메서드에 대한 전체 개요를 보려면, [[https://www.w3schools.com/jquery/jquery_ref_html.asp|jQuery HTML/CSS Reference]]로 이동하십시오.
{{tag>오션 jQuery - Dimensions}}