wordpress 带定时器的下载按钮

mmvthczy  于 11个月前  发布在  WordPress
关注(0)|答案(1)|浏览(146)

我想访问下载链接后30秒,当用户点击下载链接。如何使下载按钮与定时器在我的WordPress网站。
我的网站:https://nuvl.ir/?p=4733
请帮助我,我需要这个。谢谢你的关注。

xnifntxz

xnifntxz1#

尝试以下代码:

<p>Click the button below to start the download:</p>
<button id="downloadButton" onclick="startDownload()">Download</button>

<script>
  function startDownload() {
    document.getElementById("downloadButton").innerHTML = "Please wait...";
    setTimeout(function () {
      window.location.href = "YOUR_DOWNLOAD_LINK_HERE";
    }, 30000); // 30 seconds delay
  }
</script>

字符串

相关问题