JS - how to remove image with JavaScript?

前端 未结 9 1376
孤独总比滥情好
孤独总比滥情好 2021-02-13 11:27

I faced a problem as to remove image with JS code like a...


...
document.getElementById(\'image_X\').src=\'\'
         


        
9条回答
  •  孤独总比滥情好
    2021-02-13 12:21

    To delete an image in JavaScript (or generally to delete anything), first you should grab the element, then traverse to its parent element, then you can delete the child using removeChild method.

提交回复
热议问题