P

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

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

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,719
PHP 17-05-04 조회 3,099
PHP 17-05-04 조회 2,589
node.js 17-04-30 조회 2,476
jQuery 17-04-14 조회 2,091
jQuery 17-04-14 조회 2,190
jQuery 17-04-14 조회 2,521
PHP 17-04-14 조회 2,593
PHP 17-04-14 조회 2,876
PHP 17-04-14 조회 2,809
jQuery 17-04-13 조회 1,876
jQuery 17-04-13 조회 1,844
jQuery 17-04-13 조회 2,376
PHP 17-04-11 조회 2,718
PHP 17-04-11 조회 2,238
PHP 17-04-11 조회 2,956
OS 17-04-11 조회 3,247
PHP 17-04-10 조회 2,382
PHP 17-04-10 조회 2,002
PHP 17-04-10 조회 2,429
PHP 17-04-05 조회 2,451
PHP 17-04-05 조회 2,860
PHP 17-04-05 조회 2,698
jQuery 17-04-05 조회 2,301
jQuery 17-04-05 조회 1,835
jQuery 17-04-05 조회 2,424
jQuery 17-04-04 조회 2,340
jQuery 17-04-04 조회 2,110
PHP 17-04-04 조회 3,070