点击事件时播放的定时器和音频文件

时间:2017-11-23 19:41:03

标签: javascript html timer

按钮播放音频。我也希望同时启动下面的计时器。截至目前,计时器在页面加载时立即启动。我只想在按下按钮时才开始播放音频。我无法弄清楚语法。

 <button class="button1" 
 onclick="document.getElementById('sound1').play()">   
 </button>



 <p> Time ends in  <span id="countdowntimer">10 </span> Seconds</p>

<script type="text/javascript">
var timeleft = 10;
var downloadTimer = setInterval(function(){
timeleft--;
document.getElementById("countdowntimer").textContent = timeleft;
if(timeleft <= 0)
    clearInterval(downloadTimer);
},1000);
**strong text**</script>

0 个答案:

没有答案