Clear an IMG with jQuery

后端 未结 9 2014
广开言路
广开言路 2021-02-05 01:35

I\'m trying to remove the loaded image from a element, but clearing or removing the src doesn\'t do it. What to do?

HTML:

9条回答
  •  南方客
    南方客 (楼主)
    2021-02-05 02:36

    Remove the node using

    $("img").remove()
    

    or simply hide the image using

    $("img").hide()
    

提交回复
热议问题