Hide parent element with onclick function

前端 未结 3 1183
暗喜
暗喜 2020-12-19 15:10

I use jQuery most of the time, so I am having a bit of trouble with the following (simple) javascript:

I want to dismiss(hide) the parent element of a p tag when cli

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-19 15:43

    http://jsfiddle.net/CUqmn/4/

    function dismiss(){
          document.getElementById('dismiss').parentNode.style.display='none';
    };
    

    BTW, as jsfiddle wrap javascript code in loader function, use no wrap in left select box to get it work on jsfiddle.

提交回复
热议问题