Javascript onclick hide div

后端 未结 4 1769
不知归路
不知归路 2020-12-08 04:42

I want to hide this warning div using javascript inside it.

I\'m i getting the javascript right? I want to hide/close the div when i click on the close icon (images/

4条回答
  •  Happy的楠姐
    2020-12-08 05:34

    just add onclick handler for anchor tag

    onclick="this.parentNode.style.display = 'none'"
    

    or change onclick handler for img tag

    onclick="this.parentNode.parentNode.style.display = 'none'"
    

提交回复
热议问题