Changing the image source using jQuery

前端 未结 16 2071
天命终不由人
天命终不由人 2020-11-22 01:24

My DOM looks like this:

16条回答
  •  时光说笑
    2020-11-22 02:16

    Just an addition, to make it even more tiny:

    $('#imgId').click(function(){
        $(this).attr("src",$(this).attr('src') == 'img1_on.gif' ? 'img1_off.gif':'img1_on.gif');
    });
    

提交回复
热议问题