gpt4 book ai didi

javascript - 页面加载 3 分钟后显示 div

转载 作者:太空宇宙 更新时间:2023-11-04 16:24:32 24 4
gpt4 key购买 nike

免责声明 div 需要在页面加载后 3 分钟出现,当用户点击 a 标签时消失

目前有

<div id="disclaimer">
<p>Text</p>
<a OnClick="hidePopup()">
</div>
function hidePopup() {
document.getElementById("disclaimer").style.display = "none";
setTimeout(hidePopup, 3 * 60 * 1000);
}

function Popup() {
document.getElementById("disclaimer").style.display = "block";
}

最佳答案

三分钟后调用 hidePopup 有什么意义?

<div id="disclaimer" style="display:none">
<p>Text</p>
<a onClick="hidePopup()">hide</a>
</div>

function hidePopup() {
document.getElementById("disclaimer").style.display = "none";
}
function showPopup() {
document.getElementById("disclaimer").style.display = "block";
}
setTimeout(showPopup, 3 * 60 * 1000);

关于javascript - 页面加载 3 分钟后显示 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40345440/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com