hide/show a image in jquery

前端 未结 7 1463
逝去的感伤
逝去的感伤 2021-02-14 16:57

How to show/hide the image on clicking the hyperlink?



        
7条回答
  •  花落未央
    2021-02-14 17:36

    With image class name:

    $('.img_class').hide(); // to hide image
    $('.img_class').show(); // to show image
    

    With image Id :

    $('#img_id').hide(); // to hide image
    $('#img_id').show(); // to show image
    

提交回复
热议问题