반응형
안녕하세요. 오늘은 버튼을 클릭했을때 div의 style이 변경되는 방법에 대해 알아보겠습니다.
그리고 jquery로 css를 하나씩 바꿀 때, 여러개 바꾸는 방법에 대해 알려드리겠습니다.
style 속성 하나씩 바꿀때
$(div).css("background-color","yellow");
style 속성 여러개 바꿀때
$('div')css({"background-color":"yellow","width":"100px"});
jquery로 css를 여러개 변경할 때는 ({})안에 속성을 넣어주시면 됩니다.
다음은 버튼을 클릭할 때, div style이 바뀌는 간단한 예제입니다.
html
<button>클릭</button>
<div></div>
[css]
div{width: 200px;height: 200px;background: red;}
[js]
$('button').click(function(){
$('div').css({'background':'yellow','width':'100px'})
});
반응형
'Web > jquery' 카테고리의 다른 글
[jQuery] 풀페이지 스크롤 애니메이션 (0) | 2023.03.17 |
---|---|
[jquery] 반응형 해상도에 따라 스크립트 실행하기 (0) | 2023.03.14 |
[jQuery] swiper slider 사용법(반응형), 옵션 (0) | 2023.03.13 |
[jQuery] $ is not defined, jQuery is not defined 오류 해결방법 (0) | 2023.03.13 |
[jQuery] 외부영역 클릭시 div 숨기기 (0) | 2023.03.13 |