본문 바로가기
javaScript/jQuery

[jQuery]버튼을 클릭하면 width와 height 사이즈 변경

by mooyou 2023. 2. 14.
728x90
300x250
SMALL
<script>
    $(document).ready(function(){
        var $item = $("ul.menu li.select");
        $("#size").click(function(){
           $(".box").css({
               width:100,
               height:100
           })
        })
    });
</script>

<button id="size">사이즈 변경</button>
<div class="box"></div>

 

사이즈 변경 버튼 클릭하면 width와 height 100X100으로 변경

728x90
반응형
LIST

댓글