본문 바로가기
javaScript/jQuery

[jQuery]width, height 값 구하기

by mooyou 2023. 2. 12.
728x90
300x250
SMALL
$(document).ready(function(){
    var boxSize = $(".box").css(["width", "height"]); //.box의 width, height 값 구하기
    console.log("width = "+boxSize.width+", height = "+boxSize.height); // 출력하기
});

 

728x90
반응형
LIST

댓글