单击Javascript show元素

我正在尝试没有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='';

};

以上是 单击Javascript show元素 的全部内容, 来源链接: utcz.com/qa/410464.html

回到顶部