一尘不染

单击Javascript show元素

json

我正在尝试没有Jquery的情况。我想在单击触发器时显示div。到目前为止,我已经隐藏了这个元素。

 document.getElementById('element').style.display = 'none';

HTML ..

<div class="element">Ahem, boo!!</div>
<a href="#" id="showDiv">Show</a>

单击链接时如何创建显示div的函数?我想避免onclick="showDiv()在链接本身中使用类似的功能。


阅读 491

收藏
2020-07-27

共1个答案

一尘不染

document.getElementById('showDiv').onclick=function(){
  // Remove any element-specific value, falling back to stylesheets
  document.getElementById('element').style.display='';
};
2020-07-27