이미지 배열로 만들어서 변경하기
$("document").ready(function () {
let imageSources = ['/images/heart.png', '/images/heart_icon.svg.png']; // Array of image sources
$('#gymmark').click(function () {
let currentSource = $(this).attr('src');
let newSource = '';
if (currentSource === imageSources[0]) {
newSource = imageSources[1];
} else {
newSource = imageSources[0];
}
$(this).attr('src', newSource);
});
})
'실습기록' 카테고리의 다른 글
7월 13일 project - 별점 후기 출력 (0) | 2023.07.15 |
---|---|
7월 12일 project - 찜/찜 취소 기능 구현 (0) | 2023.07.12 |
7월 10일 project - paging (0) | 2023.07.11 |
7월 8일 project - 데이터 확인 ajax (0) | 2023.07.11 |
7월 7일 project - 스프링부트 SQL 로그 출력하기 log4j2 (0) | 2023.07.08 |