image hover src 변경
jquery
를 이용해서 이미지에 마우스를 올렸을때 해당 엘리먼트의 src속성을 변경하는 구문이다.
활용도가 다양하다.
$("selector").hover(function () {
$(this).attr("src", $(this).attr("src").replace("_off.png", "_on.png"));
}, function () {
$(this).attr("src", $(this).attr("src").replace("_on.png", "_off.png"));
});
'JavaScript > jquery' 카테고리의 다른 글
jquery tab 기능구현 (0) | 2021.02.17 |
---|---|
jquery 클릭 시 페이지 최상단으로 이동 (top btn) (0) | 2021.02.16 |
jquery로 background css 가져올때 주의점 (jquery get background css) (0) | 2020.05.10 |
jquery animation으로 해당 위치까지 부드럽게 이동하기 (0) | 2020.05.06 |
text()를 이용한 html 제거 (0) | 2020.05.05 |
댓글
이 글 공유하기
다른 글
-
jquery tab 기능구현
jquery tab 기능구현
2021.02.17 -
jquery 클릭 시 페이지 최상단으로 이동 (top btn)
jquery 클릭 시 페이지 최상단으로 이동 (top btn)
2021.02.16 -
jquery로 background css 가져올때 주의점 (jquery get background css)
jquery로 background css 가져올때 주의점 (jquery get background css)
2020.05.10 -
jquery animation으로 해당 위치까지 부드럽게 이동하기
jquery animation으로 해당 위치까지 부드럽게 이동하기
2020.05.06