当前位置: 首页 > 面试题库 >

单击Javascript show元素

龙安阳
2023-03-14
问题内容

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

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

HTML ..

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

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


问题答案:
document.getElementById('showDiv').onclick=function(){
  // Remove any element-specific value, falling back to stylesheets
  document.getElementById('element').style.display='';
};


 类似资料: