2013-10-27 337 views

回答

2

你只需要像這樣:

$('button').on('click',function(){ 
    audio.pause(); 
    setTimeout(function() { 
     audio.play(); 
    }, 3 * 1000); // 3 seconds 
    });