标签: javascript html
点击
http://www.b-r-u-n-o.it/bookstore/?src=st
有人知道怎么做吗?
答案 0 :(得分:2)
这个怎么样?
window.onload = function() { document.getElementById('div').onclick = function() { this.style.display = 'none'; }; };
<div id="div">testing</div>