클릭 시 다른 이미지로 변경 문의
본문
이미지 a1를 클릭하면 이미지 a2로 바뀌게 하고 싶습니다.
<a href=" ">
<img src="/img2/a1.png" alt="첨부" style="max-width:100%; height:auto">
</div>
!-->
답변 1
<script>
$(function() {
$("img").on("click", function() {
$(this).attr("src", "/img2/a2.png");
});
});
</script>
답변을 작성하시기 전에 로그인 해주세요.