본문 바로가기
Web Development/jQuery&javascript

[JQuery] attr(HTML 태그 속성 변경)

by 피치피치어피치 2017. 9. 18.
반응형

HTML 태그 예제

    
<img class = "sample" src = "/sample/image/example.jpg" alt = "sample">


JQuery로 HTML img 태그의 주소 변경하기

    
var sample = $('.sample');
image.click(function(){
    sample.attr('src','/sample/image/anotherExample.jpg'); //해당 이미지 주소로 src 속성을 변경
});
반응형