点击它后如何让DIV消失?

时间:2015-11-25 15:41:48

标签: javascript html

点击

时,我想让div消失

http://www.b-r-u-n-o.it/bookstore/?src=st

有人知道怎么做吗?

1 个答案:

答案 0 :(得分:2)

这个怎么样?



window.onload = function() {
  document.getElementById('div').onclick = function() {
    this.style.display = 'none';
  };
};

<div id="div">testing</div>
&#13;
&#13;
&#13;