P

jQuery w3schools 한글판 강좌64-jQuery -jQuery More width() and height()

· 2017-04-13 (목) 22:41:54 · 1877

jQuery width(), height()메소드

다음 예는 document(HTML document)와 윈도우(웹브라우저의 뷰포트(viewport))의 폭과 높이를 반환합니다.

Example

$("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);
});

다음 예는 지정된 <div>요소의 폭과 높이를 지정합니다.

Example

$("button").click(function(){
    $("#div1").width(500).height(500);
});

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 17-05-05 조회 2,659
PHP 17-05-04 조회 2,721
PHP 17-05-04 조회 3,099
PHP 17-05-04 조회 2,590
node.js 17-04-30 조회 2,478
jQuery 17-04-14 조회 2,092
jQuery 17-04-14 조회 2,191
jQuery 17-04-14 조회 2,525
PHP 17-04-14 조회 2,594
PHP 17-04-14 조회 2,878
PHP 17-04-14 조회 2,811
jQuery 17-04-13 조회 1,878
jQuery 17-04-13 조회 1,846
jQuery 17-04-13 조회 2,379
PHP 17-04-11 조회 2,719
PHP 17-04-11 조회 2,240
PHP 17-04-11 조회 2,957
OS 17-04-11 조회 3,248
PHP 17-04-10 조회 2,382
PHP 17-04-10 조회 2,002
PHP 17-04-10 조회 2,430
PHP 17-04-05 조회 2,451
PHP 17-04-05 조회 2,861
PHP 17-04-05 조회 2,700
jQuery 17-04-05 조회 2,302
jQuery 17-04-05 조회 1,837
jQuery 17-04-05 조회 2,426
jQuery 17-04-04 조회 2,342
jQuery 17-04-04 조회 2,113
PHP 17-04-04 조회 3,071